Current section

Files

Jump to
xxh3 rebar.config
Raw

rebar.config

{erl_opts, [debug_info]}.
{deps, []}.
{plugins, [rebar3_cargo]}.
{project_plugins, [erlfmt]}.
{erlfmt, [write]}.
{cargo_opts, [{release, true}]}.
{provider_hooks, [
{pre, [
{compile, {cargo, build}}
]},
{post, [
{clean, {cargo, clean}},
{ct, {cargo, test}}
]}
]}.