]> git.lizzy.rs Git - PAKEs.git/blobdiff - Cargo.toml
(cargo-release) version 0.0.8
[PAKEs.git] / Cargo.toml
index 313c7be3df5837617b59a30ef6f6fbab863e6ef4..fdabe09c00858ca1c93c7412645aa622b248c284 100644 (file)
@@ -1,16 +1,31 @@
 [package]
 name = "spake2"
-version = "0.1.0"
+version = "0.0.8"
 authors = ["Brian Warner <warner@lothar.com>"]
+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.9.0"
-rand = "0.3.0"
-#sha2 = "0.4.0"
-rust-crypto = "0.2"
-num-bigint = "0.1"
-hex = "0.2"
+curve25519-dalek = "0.17"
+rand = "0.5"
+sha2 = "0.7"
+hkdf = "0.5"
+num-bigint = "0.2"
+hex = "0.3"
 
 [dev-dependencies]
-hex = "0.2"
+bencher = "0.1"
+
+[[bench]]
+name = "spake2"
+harness = false