-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmix.exs
More file actions
50 lines (46 loc) · 1.28 KB
/
Copy pathmix.exs
File metadata and controls
50 lines (46 loc) · 1.28 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
defmodule Decibel.MixProject do
use Mix.Project
def project do
[
app: :decibel,
version: "0.2.4",
elixir: "~> 1.14",
start_permanent: Mix.env() == :prod,
deps: deps(),
package: package(),
source_url: "https://github.com/ausimian/decibel",
docs: [
main: "Decibel",
extras: ["CHANGELOG.md"]
]
]
end
# Run "mix help compile.app" to learn about applications.
def application do
[
extra_applications: [:logger, :crypto]
]
end
# Run "mix help deps" to learn about dependencies.
defp deps do
[
{:credo, ">= 0.0.0", only: [:dev], runtime: false},
{:dialyxir, ">= 0.0.0", only: [:dev], runtime: false},
{:doctor, ">= 0.0.0", only: [:dev], runtime: false},
{:ex_doc, ">= 0.0.0", only: [:dev], runtime: false},
{:ex_check, "~> 0.16.0", only: [:dev], runtime: false},
{:jason, "~> 1.0", only: [:dev, :test]},
{:typedstruct, "~> 0.5.0", runtime: false}
]
end
defp package do
[
description: "An Elixir implementation of the Noise Protocol Framework.",
licenses: ["MIT"],
links: %{
"GitHub" => "https://github.com/ausimian/decibel",
"Noise Protocol Framework" => "https://noiseprotocol.org/index.html"
}
]
end
end