/ aeplugin_carbon / rebar.config
rebar.config
1 %% -*- mode: erlang; erlang-indent-level: 4; indent-tabs-mode: nil -*- 2 {erl_opts, [ 3 debug_info, 4 {parse_transform, lager_transform}, 5 {lager_extra_sinks, [lager_carbon]} 6 ]}. 7 {plugins, [ 8 {aeplugin_rebar3, {git, "https://github.com/aeternity/aeplugin_rebar3", {branch, "master"}}} 9 ]}. 10 {project_plugins, [erlfmt]}. 11 %% Set the aeternity_root config to point to the desired version of aeternity. 12 %% The rebar3 plugin aeplugin_rebar3 will import the right versions of deps 13 %% from the aeternity code base, any time a matching dependency is given as 14 %% an {ae,_} tuple 15 {deps, [ 16 {aeserialization, {ae, aeserialization}}, 17 {jsx, {ae, jsx}}, 18 {ebip39, {git, "https://github.com/aeternity/ebip39.git", {ref, "1a9aa89"}}}, 19 {eaex10, {git, "https://github.com/aeternity/eaex10.git", {ref, "958046a"}}}, 20 {epbkdf2, {git, "https://github.com/aeternity/epbkdf2", {tag, "v1.0.0"}}}, 21 {ec_utils, {git, "https://github.com/hanssv/ec_utils.git", {ref, "e557b1c"}}} 22 ]}.