Packages

Erlang NIF JSON encoder/decoder using the glaze C++ library

Retired package: Deprecated - Deprecated

Current section

Files

Jump to
glazejson rebar.config
Raw

rebar.config

{erl_opts, [
debug_info,
warnings_as_errors,
warn_export_all
]}.
{deps, []}.
{pre_hooks, [{compile, "make nif"}]}.
{post_hooks, [
{clean, "rm -f *.dump *.crashdump"}
]}.
{plugins, [rebar3_hex, {rebar3_ex_doc, "0.3.0"}]}.
{hex, [{doc, ex_doc}]}.
{ex_doc, [
{extras, [
{"README.md", #{title => "Overview"}},
{"LICENSE", #{title => "License"}}
]},
{main, "README.md"},
{source_url, "https://github.com/saleyn/glazejson"}
]}.
{profiles, [
{test, [
{deps, [
{simdjsone, {git, "file:///home/serge/projects/erl-libs/simdjsone", {branch, "next"}}},
thoas,
{jiffy, "1.1.1"},
euneus
]},
{extra_src_dirs, ["test"]}
]}
]}.