Current section
Files
Jump to
Current section
Files
rebar.config
{project_plugins, [rebar3_hex, rebar3_ex_doc]}.
{hex, [
{files, [
"src", "native",
"priv/onyx.dll",
"rebar.config", "Makefile", "README*", "LICENSE*", "test"
]},
{maintainers, ["Steve Roques"]},
{links, [{"GitHub", "https://github.com/roquess/onyx"}]},
{licenses, ["Apache-2.0"]},
{doc, ex_doc}
]}.
{ex_doc, [
{source_url, <<"https://github.com/roquess/onyx">>},
{extras, [<<"README.md">>, <<"LICENSE">>]},
{main, <<"readme">>}
]}.
{erl_opts, [debug_info, warnings_as_errors]}.
{deps, []}.
{profiles, [
{test, [{erl_opts, [nowarn_export_all]}]}
]}.
{shell, [{apps, [onyx]}]}.