-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmix.exs
45 lines (42 loc) · 1.15 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
defmodule Itest.MixProject do
use Mix.Project
def project() do
[
app: :itest,
version: "0.1.0",
elixir: "~> 1.8",
start_permanent: Mix.env() == :prod,
deps: deps(),
build_path: "../../_build",
config_path: "../../config/config.exs",
deps_path: "../../deps",
lockfile: "../../mix.lock"
]
end
def application() do
[
extra_applications: [:logger]
]
end
defp deps() do
[
# ex plasma based on 0.2.0 but with rust deps
{:ex_plasma, git: "https://github.com/omisego/ex_plasma.git", ref: "5e94c4fc82dbf26cb457b30911505ec45ec534ea"},
{:watcher_info_api, in_umbrella: true},
{:watcher_security_critical_api, in_umbrella: true},
{:child_chain_api, in_umbrella: true},
{:eip_55, "~> 0.1"},
{:ethereumex, "~> 0.6.0"},
{:telemetry, "~> 0.4.1"},
{:websockex, "~> 0.4.2"},
{:ex_abi, "~> 0.5.1"},
{:ex_rlp, "~> 0.5.3"},
{:ex_secp256k1, "~> 0.1.2"},
{:poison, "~> 3.0"},
{:tesla, "~> 1.3"},
{:hackney, "~> 1.15.2"},
{:cabbage, "~> 0.3.0"},
{:junit_formatter, "~> 3.1", only: [:test]}
]
end
end