-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathrebar.config
26 lines (22 loc) · 1.14 KB
/
rebar.config
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
%% -*- mode: erlang; erlang-indent-level: 4; indent-tabs-mode: nil -*-
{minimum_otp_vsn, "21.3"}.
{erl_opts, [debug_info, {parse_transform, lager_transform},
{lager_extra_sinks, [ae_devmode]}]}.
{plugins, [
{aeplugin_rebar3, {git, "https://github.com/aeternity/aeplugin_rebar3", {branch,"master"}}}
]}.
{aeternity_root, {git, "https://github.com/aeternity/aeternity", "master"}}.
%% Set the aeternity_root config to point to the desired version of aeternity.
%% The rebar3 plugin aeplugin_rebar3 will import the right versions of deps
%% from the aeternity code base, any time a matching dependency is given as
%% an {ae,_} tuple
{deps, [
{lager, {ae,lager}},
{cowboy, {ae,cowboy}},
{aeserialization, {ae,aeserialization}},
{jsx, {ae,jsx}},
{ebip39 , {git, "https://github.com/aeternity/ebip39.git", {ref, "1a9aa89"}}},
{eaex10 , {git, "https://github.com/aeternity/eaex10.git", {ref, "958046a"}}},
{epbkdf2 , {git, "https://github.com/aeternity/epbkdf2" , {tag, "v1.0.0"}}},
{ec_utils, {git, "https://github.com/hanssv/ec_utils.git" , {ref, "e557b1c"}}}
]}.