Packages

Streamlined NTRU Prime: sntrup761 NIF

Current section

Files

Jump to
sntrup761_nif rebar.config
Raw

rebar.config

%% -*- erlang -*-
{minimum_otp_vsn, "27.0"}.
{erl_opts, [debug_info]}.
{deps, []}.
{plugins, [pc]}.
{project_plugins, [rebar3_lint, rebar3_hex, rebar3_ex_doc]}.
{provider_hooks,
[{pre,
[{compile, {pc, compile}},
{clean ,{pc, clean}}]}]}.
{port_specs, [{"priv/sntrup761_nif.so", ["c_src/*.c"]}]}.
{xref_checks, [undefined_function_calls]}.
{alias, [{check, [dialyzer, xref, ct, cover, lint]}]}.
{dialyzer, [{plt_extra_apps, [common_test]}]}.
{cover_enabled, true}.
{cover_opts, [verbose]}.
{ex_doc, [{extras, ["LICENSE.md"]},
{source_url, "https://github.com/sg2342/sntrup761_nif"},
{homepage_url, "https://github.com/sg2342/sntrup761_nif"},
{prefix_ref_vsn_with_v, false}]}.
{hex, [{doc, ex_doc}]}.