-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmix.exs
More file actions
58 lines (52 loc) · 1.25 KB
/
mix.exs
File metadata and controls
58 lines (52 loc) · 1.25 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
51
52
53
54
55
56
57
58
defmodule MST.MixProject do
use Mix.Project
@version "0.1.0"
@github "https://github.com/cometsh/elixir-mst"
@tangled "https://tangled.org/@comet.sh/elixir-mst"
def project do
[
app: :mst,
version: @version,
elixir: "~> 1.18",
start_permanent: Mix.env() == :prod,
deps: deps(),
name: "mst",
description: "An Elixir implementation of AT Protocol-flavoured Merkle Search Trees (MST)",
package: package(),
docs: docs()
]
end
# Run "mix help compile.app" to learn about applications.
def application do
[
extra_applications: [:logger]
]
end
# Run "mix help deps" to learn about dependencies.
defp deps do
[
{:dasl, "~> 0.1.0"},
{:typedstruct, "~> 0.5"},
{:ex_doc, "~> 0.34", only: :dev, runtime: false},
{:credo, "~> 1.7", only: [:dev, :test], runtime: false}
]
end
defp package do
[
licenses: ["MIT"],
links: %{"GitHub" => @github, "Tangled" => @tangled}
]
end
defp docs do
[
extras: [
"README.md": [title: "Overview"],
"CHANGELOG.md": [title: "Changelog"]
],
main: "readme",
source_url: @github,
source_ref: "v#{@version}",
formatters: ["html"]
]
end
end