Current section
Files
Jump to
Current section
Files
rebar.config
{erl_opts, [debug_info]}.
{profiles, [
{docs, [
{edoc_opts, [
{preprocess, true},
{doclet, edoc_doclet_chunks},
{layout, edoc_layout_chunks},
{dir, "_build/default/lib/xxh3/doc"}
]}
]}
]}.
{deps, []}.
{plugins, [rebar3_cargo]}.
{project_plugins, [erlfmt, rebar3_ex_doc]}.
{hex, [{doc, ex_doc}]}.
{ex_doc, [
{source_url, <<"https://github.com/farhadi/xxh3">>},
{extras, [<<"README.md">>, <<"LICENSE">>]},
{main, <<"xxh3">>}
]}.
{erlfmt, [write]}.
{cargo_opts, [{src_dir, "native/xxh3"}]}.
{provider_hooks, [
{pre, [
{compile, {cargo, build}}
]},
{post, [
{clean, {cargo, clean}},
{ct, {cargo, test}}
]}
]}.