-
Notifications
You must be signed in to change notification settings - Fork 44
/
mix.exs
73 lines (66 loc) · 1.53 KB
/
mix.exs
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
defmodule Eth.Mixfile do
use Mix.Project
@version "0.6.7"
@source_url "https://github.com/izelnakri/eth"
def project() do
[
app: :eth,
version: @version,
elixir: "~> 1.14",
description: description(),
start_permanent: Mix.env() == :prod,
package: package(),
deps: deps(),
docs: docs()
]
end
# Run "mix help compile.app" to learn about applications.
def application() do
[
extra_applications: [:logger, :ethereumex]
]
end
# Run "mix help deps" to learn about dependencies.
defp deps() do
[
{:ethereumex, "~> 0.10.4"},
{:ex_rlp, "~> 0.6.0"},
{:ex_doc, ">= 0.29.4", only: :dev},
{:dialyxir, "~> 1.3.0", only: [:dev], runtime: false},
{:hexate, "~> 0.6.1"},
{:ex_keccak, "~> 0.7.1"},
{:mnemonic, "~> 0.3.1"},
{:poison, "~> 5.0.0", only: :test},
{:ex_secp256k1, "~> 0.7.0"}
]
end
defp description() do
"""
Ethereum utilities for Elixir.
"""
end
def package() do
[
name: :eth,
files: ["lib", "mix.exs", "README*", "LICENSE*"],
maintainers: ["Izel Nakri"],
licenses: ["MIT License"],
links: %{
"Changelog" => "#{@source_url}/blob/master/CHANGELOG.md",
"Docs" => "https://hexdocs.pm/eth/ETH.html",
"GitHub" => @source_url
}
]
end
defp docs do
[
main: "readme",
source_ref: "v#{@version}",
source_url: @source_url,
extras: [
"README.md",
"CHANGELOG.md"
]
]
end
end