emqx_utils.app.src 673 B

12345678910111213141516171819202122232425262728
  1. %% -*- mode: erlang -*-
  2. {application, emqx_utils, [
  3. {description, "Miscellaneous utilities for EMQX apps"},
  4. % strict semver, bump manually!
  5. {vsn, "5.4.1"},
  6. {modules, [
  7. emqx_utils,
  8. emqx_utils_api,
  9. emqx_utils_binary,
  10. emqx_utils_ets,
  11. emqx_utils_json,
  12. emqx_utils_maps
  13. ]},
  14. {registered, []},
  15. {applications, [
  16. kernel,
  17. stdlib,
  18. jiffy,
  19. emqx_http_lib
  20. ]},
  21. {env, []},
  22. {licenses, ["Apache-2.0"]},
  23. {maintainers, ["EMQX Team <contact@emqx.io>"]},
  24. {links, [
  25. {"Homepage", "https://emqx.io/"},
  26. {"Github", "https://github.com/emqx/emqx"}
  27. ]}
  28. ]}.