forked from Shelvak/exw3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmix.exs
50 lines (45 loc) · 1.07 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
defmodule ExW3.MixProject do
use Mix.Project
def project do
[
app: :exw3,
version: "0.6.1",
elixir: "~> 1.10",
build_embedded: Mix.env() == :prod,
start_permanent: Mix.env() == :prod,
deps: deps(),
description: description(),
package: package(),
name: "exw3",
source_url: "https://github.com/hswick/exw3",
dialyzer: [
remove_defaults: [:unknown]
]
]
end
def application do
[applications: [:logger, :ex_abi, :ethereumex]]
end
defp deps do
[
{:ex_doc, ">= 0.0.0", only: :dev},
{:ethereumex, "~> 0.7.0"},
{:ex_keccak, "~> 0.2"},
{:ex_abi, "~> 0.5.4"},
{:dialyxir, "~> 1.0", only: [:dev], runtime: false},
{:jason, "~> 1.2"}
]
end
defp description do
"A high level Ethereum JSON RPC Client for Elixir"
end
defp package do
[
name: "exw3",
files: ["lib", "mix.exs", "README*"],
maintainers: ["Harley Swick"],
licenses: ["Apache 2.0"],
links: %{"GitHub" => "https://github.com/hswick/exw3"}
]
end
end