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"}]}]}.