-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathrebar.config
More file actions
25 lines (25 loc) · 737 Bytes
/
rebar.config
File metadata and controls
25 lines (25 loc) · 737 Bytes
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
{erl_opts, [
debug_info,
{parse_transform, decorators},
{decorate, [
{relocating_particle, [
% {{compute_move, 1}, [{relocating_engine, log_move}]},
{{update_best, 3}, [{relocating_engine_example_mlat, log_update}]}
]}
]}
]}.
{deps, [
{sf, {git, "https://github.com/hachreak/sf.git", {branch, master}}},
{stepflow,
{git, "https://github.com/hachreak/stepflow.git", {branch, master}}},
{erlang_decorators,
{git, "https://github.com/egobrain/erlang_decorators.git", {tag, "0.2.1"}}},
{uuid, {git, "https://github.com/avtobiff/erlang-uuid.git", {tag, "v0.5.1"}}}
]}.
{profiles, [
{test, [
{deps, [
{meck, {git, "https://github.com/eproxus/meck.git", {tag, "0.8.8"}}}
]}
]}
]}.