33 lines
1.2 KiB
Erlang
33 lines
1.2 KiB
Erlang
|
|
{erl_opts, [{parse_transform, lager_transform}]}.
|
|
|
|
{deps, [
|
|
{lager, {git, "https://github.com/erlang-lager/lager.git",
|
|
{ref, "69b4ada"}}}, % tag: 3.6.7
|
|
|
|
%% Cuckoo prebuilt CUDA binaries.
|
|
{aecuckooprebuilt,
|
|
{aecuckooprebuilt_app_with_priv_from_git, {git, "https://github.com/aeternity/cuckoo-prebuilt.git",
|
|
{ref, "90afb699dc9cc41d033a7c8551179d32b3bd569d"}}}},
|
|
|
|
%% Cuckoo CPU miners (not prebuilt).
|
|
{aecuckoo, {git, "https://github.com/aeternity/aecuckoo.git",
|
|
{ref, "fa3d13e"}}},
|
|
|
|
%% This is used just in one place, just to get blake2b_256 hash.
|
|
{enacl, {git, "https://github.com/aeternity/enacl.git",
|
|
{ref, "26180f4"}}}
|
|
]}.
|
|
|
|
{plugins, [{rebar_aecuckooprebuilt_dep, {git, "https://github.com/aeternity/rebar3-cuckoo-prebuilt-plugin.git",
|
|
{ref, "0eef4488973a568ed24da201a7b7c1df465d2406"}}}
|
|
]}.
|
|
|
|
{profiles, [{test, [{deps, [{meck, "0.8.12"}]}]}]}.
|
|
|
|
{dialyzer, [{warnings, [unknown]},
|
|
{plt_apps, all_deps},
|
|
{base_plt_apps, [erts, kernel, stdlib, crypto]}
|
|
]}.
|
|
|