From 66b1d2e98a5219d1a9fd064621e73feddece7a18 Mon Sep 17 00:00:00 2001 From: Thomas Arts Date: Mon, 7 Jan 2019 19:17:11 +0100 Subject: [PATCH] Update rebar config --- rebar.config | 18 +++++++++++------- rebar.lock | 8 ++++++++ 2 files changed, 19 insertions(+), 7 deletions(-) create mode 100644 rebar.lock diff --git a/rebar.config b/rebar.config index 0a11c7a..2dd387b 100644 --- a/rebar.config +++ b/rebar.config @@ -1,13 +1,17 @@ -%% -*- mode: erlang -*- - -{minimun_otp_vsn, "20.1"}. - {erl_opts, [debug_info]}. -{deps, []}. +%% NOTE: When possible deps are referenced by Git ref to ensure consistency between builds. +{deps, [ {aebytecode, {git, "https://github.com/aeternity/aebytecode.git", + {ref,"99bf097"}}}, + + % waiting for https://github.com/jlouis/enacl/pull/40 to be merged + {enacl, {git, "https://github.com/aeternity/enacl.git", + {ref, "26180f4"}}} + ]}. + {dialyzer, [ {warnings, [unknown]}, {plt_apps, all_deps}, - {base_plt_apps, [erts, kernel, stdlib]} - ]}. + {base_plt_apps, [erts, kernel, stdlib, crypto, mnesia]} + ]}. diff --git a/rebar.lock b/rebar.lock new file mode 100644 index 0000000..6cae2d4 --- /dev/null +++ b/rebar.lock @@ -0,0 +1,8 @@ +[{<<"aebytecode">>, + {git,"https://github.com/aeternity/aebytecode.git", + {ref,"99bf097759dedbe7553f87a796bc7e1c7322e64b"}}, + 0}, + {<<"enacl">>, + {git,"https://github.com/aeternity/enacl.git", + {ref,"26180f42c0b3a450905d2efd8bc7fd5fd9cece75"}}, + 0}].