forked from exthereum/ex_wire
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmix.exs
39 lines (35 loc) · 1.06 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
defmodule ExWire.Mixfile do
use Mix.Project
def project do
[app: :ex_wire,
version: "0.1.1",
elixir: "~> 1.4",
description: "Elixir Client for Ethereum's RLPx, DevP2P and Eth Wire Protocol",
package: [
maintainers: ["Mason Fischer", "Geoffrey Hayes", "Ayrat Badykov"],
licenses: ["MIT"],
links: %{"GitHub" => "https://github.com/exthereum/ex_wire"}
],
elixirc_paths: elixirc_paths(Mix.env),
build_embedded: Mix.env == :prod,
start_permanent: Mix.env == :prod,
deps: deps()]
end
def application do
[mod: {ExWire, []},
extra_applications: [:logger]]
end
defp elixirc_paths(:test), do: ["lib", "test/support"]
defp elixirc_paths(_), do: ["lib"]
defp deps do
[
{:credo, "~> 0.8", only: [:dev, :test], runtime: false},
{:ex_doc, "~> 0.14", only: :dev, runtime: false},
{:ex_rlp, "~> 0.2.1"},
{:blockchain, "~> 0.1.5"},
{:dialyxir, "~> 0.5", only: [:dev], runtime: false},
{:exth_crypto, "~> 0.1.4"},
{:evm, "~> 0.1.11"}
]
end
end