Convert qdate_srv to be an ETS server (dialyzer doesn't like using tuples as keys for application:set_env)

This commit is contained in:
Jesse Gumm 2021-06-30 14:44:45 -05:00
parent 3d72448491
commit bbfef69d2e
5 changed files with 115 additions and 18 deletions

View file

@ -1,7 +1,7 @@
{application, qdate,
[
{description, "Simple Date and Timezone handling for Erlang"},
{vsn, "0.6.0"},
{vsn, "0.7.0"},
{registered, []},
{applications, [
kernel,
@ -9,9 +9,10 @@
erlware_commons,
stdlib
]},
{modules, [qdate, qdate_srv]},
{modules, [qdate, qdate_srv, qdate_sup, qdate_app]},
{env, []},
{maintainers, ["Jesse Gumm"]},
{licenses, ["MIT"]},
{mod, {qdate_app, []}},
{links, [{"Github", "https://github.com/choptastic/qdate"}]}
]}.