-
Notifications
You must be signed in to change notification settings - Fork 0
/
rebar.config
23 lines (22 loc) · 988 Bytes
/
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
{erl_opts,
[
debug_info,
%% bin_opt_info,
%% warnings_as_errors
warn_unused_vars,
warn_shadow_vars,
warn_unused_import
]}.
{deps_dir, ["deps"]}.
{deps, [
{bstr, ".*", {git, "https://github.com/jcomellas/bstr.git", "HEAD"}},
{cowboy, ".*", {git, "https://github.com/extend/cowboy.git", "HEAD"}},
{lager, ".*", {git, "https://github.com/basho/lager.git", "HEAD"}},
{ejson, ".*", {git, "https://github.com/benoitc/ejson.git", "HEAD"}},
{kvc, ".*", {git, "https://github.com/etrepum/kvc.git", "HEAD"}},
{ibrowse, ".*", {git, "https://github.com/cmullaparthi/ibrowse.git", "HEAD"}},
{gproc, ".*", {git, "https://github.com/uwiger/gproc.git", "HEAD"}},
{app_cache, ".*", {git, "https://github.com/Erlymob/app_cache.git", "HEAD"}},
{twitterl, ".*", {git, "https://github.com/dieswaytoofast/twitterl.git", "HEAD"}},
{util, ".*", {git, "https://github.com/dieswaytoofast/util.git", "HEAD"}}
]}.