aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrian Warner <warner@lothar.com>2017-07-31 17:51:00 -0700
committerBrian Warner <warner@lothar.com>2017-07-31 18:02:06 -0700
commit25820c4f3f4049fa1c99e5e2914f0af000ffdd9d (patch)
tree43c3f9e99226fe83b353610b906e8b2d880e305b
parent33522ac59896b357c50d9471d09612f922a4a47b (diff)
downloadPAKEs-25820c4f3f4049fa1c99e5e2914f0af000ffdd9d.tar.xz
prep for preliminary 0.0.1 release
* add Cargo.toml metadata * add travis badge * exclude .gitignore
-rw-r--r--Cargo.toml19
-rw-r--r--README.md4
2 files changed, 17 insertions, 6 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"
diff --git a/README.md b/README.md
index 228e303..c9e7054 100644
--- a/README.md
+++ b/README.md
@@ -1,6 +1,6 @@
# spake2.rs
-the SPAKE2 password-authenticated key-exchange algorithm, in Rust
+The SPAKE2 password-authenticated key-exchange algorithm, in Rust.
[![Build Status](https://travis-ci.org/warner/spake2.rs.svg?branch=master)](https://travis-ci.org/warner/spake2.rs)
-NOTE: this is just a beginning: you should absolutely not use this for anything at all yet. It has a long way to go. Wait until it has a real version number and has been published to crates.io.
+NOTE: this is just a beginning: you should absolutely not use this for anything at all yet. It has a long way to go. Wait until it has a real version number (at least 0.1.something) and has been published to crates.io.