aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml
diff options
context:
space:
mode:
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml19
1 files changed, 15 insertions, 4 deletions
diff --git a/Cargo.toml b/Cargo.toml
index 313c7be..cb614a2 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,12 +1,23 @@
[package]
name = "spake2"
-version = "0.1.0"
+version = "0.0.1"
authors = ["Brian Warner <warner@lothar.com>"]
+description = "The SPAKE2 password-authenticated key-exchange algorithm, in Rust."
+documentation = "https://github.com/warner/spake2.rs"
+homepage = "https://github.com/warner/spake2.rs"
+repository = "https://github.com/warner/spake2.rs"
+license = "MIT"
+categories = ["cryptography"]
+exclude = [
+ ".gitignore"
+]
+
+[badges]
+travis-ci = { repository = "https://github.com/warner/spake2.rs" }
[dependencies]
-#rust-crypto = "^0.2"
-curve25519-dalek = "0.9.0"
-rand = "0.3.0"
+curve25519-dalek = "0.9"
+rand = "0.3"
#sha2 = "0.4.0"
rust-crypto = "0.2"
num-bigint = "0.1"