From b9f214a49d9b5f4536bf84e6bfd94e27acf51e0e Mon Sep 17 00:00:00 2001 From: Ulf Wiger Date: Thu, 24 Apr 2025 22:26:59 +0200 Subject: [PATCH] Add ebin/enoise.app --- .gitignore | 2 +- ebin/enoise.app | 12 ++++++++++++ 2 files changed, 13 insertions(+), 1 deletion(-) create mode 100644 ebin/enoise.app diff --git a/.gitignore b/.gitignore index dea5bb5..a037a1b 100644 --- a/.gitignore +++ b/.gitignore @@ -7,7 +7,7 @@ _* *.swp *.swo .erlang.cookie -ebin +ebin/*.beam log erl_crash.dump .rebar diff --git a/ebin/enoise.app b/ebin/enoise.app new file mode 100644 index 0000000..939567e --- /dev/null +++ b/ebin/enoise.app @@ -0,0 +1,12 @@ +{application,enoise, + [{description,"Noise protocol"}, + {vsn,"1.3.0"}, + {registered,[]}, + {applications,[kernel,stdlib,crypto]}, + {env,[]}, + {modules,[enoise,enoise_cipher_state,enoise_connection, + enoise_crypto,enoise_hs_state,enoise_keypair, + enoise_protocol,enoise_sym_state]}, + {maintainers,["Hans Svensson"]}, + {licenses,["ISC"]}, + {links,[{"Github","https://github.com/aeternity/enoise"}]}]}.