Packages

Base62 encoder/decoder in pure Erlang.

Current section

Files

Jump to
erlang_base62 rebar.config
Raw

rebar.config

{project_plugins, [rebar3_hex, rebar3_ex_doc, covertool]}.
{hex, [{doc, ex_doc}]}.
{minimum_otp_version, "27"}.
{ex_doc, [{extras, ["README.md", "LICENSE", "CHANGELOG.md", "BENCHMARK.md"]},
{main, "README.md"},
{homepage_url, "https://github.com/gilbertwong96/erlang_base62"},
{source_url, "https://github.com/gilbertwong96/erlang_base62"}
]}.
{erl_opts, [debug_info,
warn_export_all,
warn_unused_import]}.
{cover_enabled, true}.
{xref_checks, [undefined_function_calls]}.
{eunit_opts, [verbose, {report,{eunit_surefire,[{dir,"."}]}}]}.
{dialyzer_base_plt_apps, [kernel, stdlib, erts, sasl, ssl, syntax_tools, compiler, crypto]}.
{profiles,
[{test,
[{deps,
[{proper, "1.5.0"}]}]},
{bench,
[{erl_opts,
[debug_info,
warn_export_all,
warn_unused_import]}]}]}.