diff --git a/rebar.config b/rebar.config index 8282b4f..748f94a 100644 --- a/rebar.config +++ b/rebar.config @@ -1,5 +1,6 @@ {erl_opts, [debug_info]}. -{deps, [{enacl, ".*", {git, "https://github.com/aeternity/enacl.git", {ref, "2f50ba6"}}}]}. +{plugins, [rebar3_hex]}. +{deps, [{enacl, "0.17.2"}]}. {profiles, [{test, [{deps, [{jsx, {git, "https://github.com/talentdeficit/jsx.git", {tag, "2.8.0"}}}]}]} ]}. diff --git a/rebar.lock b/rebar.lock new file mode 100644 index 0000000..cedfb79 --- /dev/null +++ b/rebar.lock @@ -0,0 +1,6 @@ +{"1.1.0", +[{<<"enacl">>,{pkg,<<"enacl">>,<<"0.17.2">>},0}]}. +[ +{pkg_hash,[ + {<<"enacl">>, <<"4AD59142943E72D72C56E33C30DEDEF28ADD8EBEE79C51033562B0CB4B93EDE0">>}]} +]. diff --git a/src/enoise.app.src b/src/enoise.app.src index cf03475..9a01cbb 100644 --- a/src/enoise.app.src +++ b/src/enoise.app.src @@ -1,6 +1,6 @@ {application, enoise, [{description, "An Erlang implementation of the Noise protocol"}, - {vsn, "0.1.0"}, + {vsn, "1.0.0"}, {registered, []}, {applications, [kernel, @@ -9,8 +9,7 @@ ]}, {env,[]}, {modules, []}, - - {maintainers, []}, - {licenses, []}, - {links, []} + {maintainers, ["Hans Svensson"]}, + {licenses, ["ISC"]}, + {links, [{"Github", "https://github.com/aeternity/enoise"}]} ]}.