-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrebar.config
More file actions
36 lines (34 loc) · 997 Bytes
/
rebar.config
File metadata and controls
36 lines (34 loc) · 997 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
26
27
28
29
30
31
32
33
34
35
36
{erl_opts, [
debug_info,
{parse_transform, lager_transform}
]}.
{deps, [
% Replicated datatype library
{antidote_crdt, {git, "https://github.com/AntidoteDB/antidote_crdt", {tag, "v0.1.2"}}},
% Protocol buffer decoding/encoding
{antidote_pb_codec, {git, "https://github.com/AntidoteDB/antidote_pb_codec", {tag, "v0.0.5"}}},
% ranch socket acceptor pool for managing protocol buffer sockets
{ranch, "1.5.0"},
% lager for logging:
{lager, "3.7.0"},
{meck, "0.8.13"}
]}.
{profiles, [
{test, [
{deps, [
% Antidote protocol buffer client for testing:
{antidote_pb, {git, "https://github.com/AntidoteDB/antidote-erlang-client", {tag, "v0.2.4"}}},
% meck mocking framework
{meck, "0.8.13"}
]}
]}
]}.
% Release configuration, see https://www.rebar3.org/docs/releases
{relx, [
{release, {"minidote", "0.0.1"}, [minidote]},
{dev_mode, true},
{include_erts, true},
{system_libs, true},
{include_src, false},
{extended_start_script, true}
]}.