A DNS over HTTPS (DoH) client written in elixir.
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
defmodule Dough.MixProject do
|
|
|
|
use Mix.Project
|
|
|
|
|
|
|
|
def project do
|
|
|
|
[
|
|
|
|
app: :dough,
|
|
|
|
version: "0.1.0",
|
|
|
|
elixir: "~> 1.6",
|
|
|
|
start_permanent: Mix.env() == :prod,
|
|
|
|
deps: deps()
|
|
|
|
]
|
|
|
|
end
|
|
|
|
|
|
|
|
# Run "mix help compile.app" to learn about applications.
|
|
|
|
def application do
|
|
|
|
[
|
|
|
|
extra_applications: [:logger, :cowboy, :plug, :dns, :cachex],
|
|
|
|
mod: {Dough, []}
|
|
|
|
]
|
|
|
|
end
|
|
|
|
|
|
|
|
# Run "mix help deps" to learn about dependencies.
|
|
|
|
defp deps do
|
|
|
|
[
|
|
|
|
{:cowboy, "~> 2.4.0"},
|
|
|
|
{:plug, "~> 1.5"},
|
|
|
|
{:dns, "~> 2.1.0"},
|
|
|
|
{:cachex, "~> 3.0.3"},
|
|
|
|
{:distillery, "~> 2.0"},
|
|
|
|
{:toml, "~> 0.3.0"}
|
|
|
|
]
|
|
|
|
end
|
|
|
|
end
|