| 123456789101112131415161718192021222324252627 |
- %% -*- mode: erlang -*-
- {application, emqx_utils, [
- {description, "Miscellaneous utilities for EMQX apps"},
- % strict semver, bump manually!
- {vsn, "5.0.16"},
- {modules, [
- emqx_utils,
- emqx_utils_api,
- emqx_utils_binary,
- emqx_utils_ets,
- emqx_utils_json,
- emqx_utils_maps
- ]},
- {registered, []},
- {applications, [
- kernel,
- stdlib,
- jiffy
- ]},
- {env, []},
- {licenses, ["Apache-2.0"]},
- {maintainers, ["EMQX Team <contact@emqx.io>"]},
- {links, [
- {"Homepage", "https://emqx.io/"},
- {"Github", "https://github.com/emqx/emqx"}
- ]}
- ]}.
|