aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrian Warner <warner@lothar.com>2018-10-16 11:06:26 -0700
committerBrian Warner <warner@lothar.com>2018-10-16 11:06:26 -0700
commit27001107bc9eb60005ff2f3d79e7a23ecf237ff4 (patch)
tree0cdac551679dc58723c184dad516df752b04249b
parentca3b29ffc820d56b72bec2458059729dd3643c1c (diff)
downloadPAKEs-27001107bc9eb60005ff2f3d79e7a23ecf237ff4.tar.xz
Cargo.toml: update repo URLs
finish relicensing spake2 to MIT/Apache-2.0
-rw-r--r--spake2/Cargo.toml12
-rw-r--r--srp/Cargo.toml4
2 files changed, 8 insertions, 8 deletions
diff --git a/spake2/Cargo.toml b/spake2/Cargo.toml
index 8736f35..25e9534 100644
--- a/spake2/Cargo.toml
+++ b/spake2/Cargo.toml
@@ -4,18 +4,18 @@ version = "0.1.1-alpha.0"
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"
+homepage = "https://github.com/RustCrypto/PAKEs"
+repository = "https://github.com/RustCrypto/PAKEs"
+license = "MIT/Apache-2.0"
categories = ["cryptography"]
exclude = [
".gitignore"
]
[badges]
-travis-ci = { repository = "warner/spake2.rs" }
-is-it-maintained-issue-resolution = { repository = "warner/spake2.rs" }
-is-it-maintained-open-issues = { repository = "warner/spake2.rs" }
+travis-ci = { repository = "RustCrypto/PAKEs" }
+is-it-maintained-issue-resolution = { repository = "RustCrypto/PAKEs" }
+is-it-maintained-open-issues = { repository = "RustCrypto/PAKEs" }
[dependencies]
curve25519-dalek = "0.19"
diff --git a/srp/Cargo.toml b/srp/Cargo.toml
index 53c6eea..3708d1c 100644
--- a/srp/Cargo.toml
+++ b/srp/Cargo.toml
@@ -5,7 +5,7 @@ authors = ["RustCrypto Developers"]
license = "MIT/Apache-2.0"
description = "Secure Remote Password (SRP) protocol implementation"
documentation = "https://docs.rs/srp"
-repository = "https://github.com/RustCrypto/PAKE"
+repository = "https://github.com/RustCrypto/PAKEs"
keywords = ["crypto", "pake", "authentication"]
categories = ["cryptography", "authentication"]
@@ -21,4 +21,4 @@ sha2 = "0.6"
sha-1 = "0.4"
[badges]
-travis-ci = { repository = "RustCrypto/PAKE" }
+travis-ci = { repository = "RustCrypto/PAKEs" }