33 lines
1.3 KiB
Erlang
33 lines
1.3 KiB
Erlang
|
|
{erl_opts, [{parse_transform, lager_transform}, {lager_extra_sinks, [aeminer]}]}.
|
|
|
|
{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, "a1bff574dd0a965d3f9f2e23f980bbead8b4638d"}}},
|
|
|
|
%% 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, "4f0a0c64132f837ee47cfaf99cddafabfe4fd7f1"}}}
|
|
]}.
|
|
|
|
{profiles, [{test, [{deps, [{meck, "0.8.12"}]}]}]}.
|
|
|
|
{dialyzer, [{warnings, [unknown]},
|
|
{plt_apps, all_deps},
|
|
{base_plt_apps, [erts, kernel, stdlib, crypto]}
|
|
]}.
|
|
|