-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathrebar.config
62 lines (54 loc) · 1.74 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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
%% -*- mode: erlang; indent-tabs-mode: nil -*-
{erl_opts, [debug_info]}.
{minimum_otp_vsn, "22.3.4.9"}.
{deps,
[ { aesophia
, { git, "https://github.com/aeternity/aesophia.git"
, {tag, "v8.0.1"}
}
}
, { ecrecover
, { git, "https://github.com/aeternity/ecrecover.git"
, {ref, "ce4175e"}
}
}
, { emcl
, { git, "https://github.com/aeternity/emcl.git"
, {ref, "e988f69"}
}
}
]}.
{overrides,
[{add, aebytecode, [{erl_opts, [{d, 'EQC'}]}]
}]}.
{relx, [{release, {aerepl, "3.3.2"},
[aerepl, {exometer_core, load}, {aeminer, load}, {aechannel, load}, {aecore, load}, {aeutils, load}, {mnesia, load}, sasl]},
{lib_dirs, ["node/_build/dev1/rel/aeternity/lib/", "_build/prod/lib/"]},
{dev_mode, true},
{vm_args, "config/vm.args"},
{sys_config, "config/sys.config"},
{include_erts, false},
{extended_start_script, true},
{extended_start_script_extensions, [
{check_config, "extensions/check_config"},
{keys_gen, "extensions/keys_gen"},
{peer_key, "extensions/peer_key"},
{export, "extensions/export_chain"},
{messages_hash, "extensions/messages_hash"}
]}
]}.
{pre_hooks, [ {"(linux|darwin|solaris|freebsd|netbsd|openbsd)",
compile,
"./link_apps.bash"
}
]}.
{cover_enabled, true}.
{cover_opts, [verbose]}.
{profiles, [{prod, [{relx, [{dev_mode, false},
{include_erts, true},
{include_src, false}]}]}
]}.
{dialyzer, [ {warnings, [unknown, no_return]}
, {plt_apps, all_deps}
, {base_plt_apps, [erts, kernel, stdlib, crypto]}
]}.