Packages

Safely handle passwords with bcrypt and Erlang

Current section

Files

Jump to
erlpass rebar.config.script
Raw

rebar.config.script

case erlang:function_exported(rebar3, main, 1) of
true -> % rebar3
CONFIG;
false -> % rebar 2.x or older
%% Rebuild deps
[{deps, [{bcrypt, ".*",
{git, "https://github.com/erlangpack/bcrypt.git", {tag, "1.0.2"}}}]}
| lists:keydelete(deps, 1, CONFIG)]
end.