
* Removed unused lib. * Replace local blake2 implementation with eblake2. * Add eblake2 dep to app file. * Add eblake2 to rebar config. * Use hex for eblake2. * Bump version. * Replace local rlp with aeserialization repo. Use ref till first release is available. * Remove unused vars.
18 lines
335 B
Erlang
18 lines
335 B
Erlang
{application, aebytecode,
|
|
[{description, "Bytecode definitions, serialization and deserialization for aeternity."},
|
|
{vsn, "2.0.1"},
|
|
{registered, []},
|
|
{applications,
|
|
[kernel,
|
|
stdlib,
|
|
eblake2,
|
|
aeserialization,
|
|
getopt
|
|
]},
|
|
{env,[]},
|
|
{modules, []},
|
|
{maintainers, []},
|
|
{licenses, []},
|
|
{links, []}
|
|
]}.
|