X-Git-Url: https://git.lizzy.rs/?a=blobdiff_plain;f=Cargo.toml;h=fdabe09c00858ca1c93c7412645aa622b248c284;hb=2958035067bc7cb01e1c6672f53daf8d0f1e8096;hp=bf860d33100b8327e0849ab18918becf70d3d529;hpb=2c0792059c573cf12870f2aa24c9df993deef983;p=PAKEs.git diff --git a/Cargo.toml b/Cargo.toml index bf860d3..fdabe09 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,14 +1,31 @@ [package] name = "spake2" -version = "0.1.0" +version = "0.0.8" authors = ["Brian Warner "] +description = "The SPAKE2 password-authenticated key-exchange algorithm, in Rust." +documentation = "https://docs.rs/spake2" +homepage = "https://github.com/warner/spake2.rs" +repository = "https://github.com/warner/spake2.rs" +license = "MIT" +categories = ["cryptography"] +exclude = [ + ".gitignore" +] + +[badges] +travis-ci = { repository = "warner/spake2.rs" } [dependencies] -#rust-crypto = "^0.2" -curve25519-dalek = "0.8.0" -rand = "0.3.0" -sha2 = "0.4.0" +curve25519-dalek = "0.17" +rand = "0.5" +sha2 = "0.7" +hkdf = "0.5" +num-bigint = "0.2" +hex = "0.3" [dev-dependencies] -num-bigint = "0.1" -hex = "0.2" +bencher = "0.1" + +[[bench]] +name = "spake2" +harness = false