Merge branch 'EMQX-9549-new-emqx-utils-app-to-collect-utility-modules' of github.com:sstrigler/emqx into EMQX-9549-new-emqx-utils-app-to-collect-utility-modules
This commit is contained in:
commit
17d84fb5e0
|
@ -1,10 +1,10 @@
|
|||
# emqx_utils - Erlang utility library for EMQ X
|
||||
# Erlang utility library for EMQX
|
||||
|
||||
## Overview
|
||||
|
||||
`emqx_utils` is a collection of utility functions for EMQ X, organized into
|
||||
`emqx_utils` is a collection of utility functions for EMQX, organized into
|
||||
several modules. It provides various functionalities to make it easier to work
|
||||
with EMQ X, such as binary manipulations, maps, JSON en- and decoding, ets table
|
||||
with EMQX, such as binary manipulations, maps, JSON en- and decoding, ets table
|
||||
handling, data conversions, and more.
|
||||
|
||||
## Features
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
%% -*- mode: erlang -*-
|
||||
{application, emqx_utils, [
|
||||
{description, "An OTP application"},
|
||||
{description, "Miscellaneous utilities for EMQX apps"},
|
||||
% strict semver, bump manually!
|
||||
{vsn, "5.0.0"},
|
||||
{modules, [
|
||||
|
|
2
mix.exs
2
mix.exs
|
@ -303,7 +303,7 @@ defmodule EMQXUmbrella.MixProject do
|
|||
tools: :load,
|
||||
covertool: :load,
|
||||
system_monitor: :load,
|
||||
emqx_utils: :permanent,
|
||||
emqx_utils: :load,
|
||||
emqx_http_lib: :permanent,
|
||||
emqx_resource: :permanent,
|
||||
emqx_connector: :permanent,
|
||||
|
|
|
@ -391,7 +391,7 @@ relx_apps(ReleaseType, Edition) ->
|
|||
{covertool, load},
|
||||
% started by emqx_machine
|
||||
{system_monitor, load},
|
||||
emqx_utils,
|
||||
{emqx_utils, load},
|
||||
emqx_http_lib,
|
||||
emqx_resource,
|
||||
emqx_connector,
|
||||
|
|
Loading…
Reference in New Issue