-
Notifications
You must be signed in to change notification settings - Fork 47
/
mix.exs
50 lines (48 loc) · 1.4 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 Mana.MixProject do
use Mix.Project
def project do
[
apps_path: "apps",
apps: [
:logger,
:logger_file_backend,
:blockchain,
:cli,
:evm,
:ex_wire,
:exth,
:exth_crypto,
:merkle_patricia_tree,
:jsonrpc2
],
elixirc_options: [warnings_as_errors: true],
elixir: "~> 1.8",
start_permanent: Mix.env() == :prod,
dialyzer: [
flags: [:underspecs, :unknown, :unmatched_returns],
ignore_warnings: ".dialyzer.ignore-warnings",
plt_add_apps: [:mix, :iex, :ex_unit, :ranch, :plug, :hackney, :jason, :websockex, :cowboy]
],
deps: deps()
]
end
# Dependencies listed here are available only for this
# project and cannot be accessed from applications inside
# the apps folder.
#
# Run "mix help deps" for examples and options.
defp deps do
[
{:ex_rlp, "~> 0.5.2"},
{:ex_doc, "~> 0.19", only: :dev, runtime: false},
{:dialyxir, "~> 1.0.0-rc.4", only: [:dev, :test], runtime: false},
{:ethereumex, "~> 0.5.1"},
{:jason, "~> 1.1"},
{:credo, "~> 1.0.0-rc1", only: [:dev, :test], runtime: false},
{:distillery, "~> 2.0", runtime: false},
{:artificery,
github: "mana-ethereum/artificery", branch: "hayesgm/allow-extra-args", override: true},
{:logger_file_backend, "~> 0.0.10"}
]
end
end