aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrian Warner <warner@lothar.com>2019-08-07 11:09:39 -0700
committerBrian Warner <warner@lothar.com>2019-08-07 13:56:43 -0700
commitb58075fbb9cee7a2a5309ff9e444f85c0cd6e918 (patch)
treed5c52f0b8568df2e35286b6cc122ccbcae83132a
parent6d3662e9657b418654e1c4afe803f3c1cbf40630 (diff)
downloadPAKEs-b58075fbb9cee7a2a5309ff9e444f85c0cd6e918.tar.xz
spake2: tighten the curve25519-dalek dependency to 1.2.x
This was just "1", which allowed our MSRV to be accidentally raised from 1.31 to 1.32 without a deliberate spake2 minor-version bump (dalek-1.0.x compiles with rustc-1.31, but dalek-1.1.x required 1.32). Hopefully by making it "1.2", our MSRV will remain at 1.32 until we explicitly decide to take on a dependency that needs something newer. refs #21
-rw-r--r--spake2/Cargo.toml2
1 files changed, 1 insertions, 1 deletions
diff --git a/spake2/Cargo.toml b/spake2/Cargo.toml
index a0ed4f8..3d930be 100644
--- a/spake2/Cargo.toml
+++ b/spake2/Cargo.toml
@@ -26,7 +26,7 @@ is-it-maintained-issue-resolution = { repository = "RustCrypto/PAKEs" }
is-it-maintained-open-issues = { repository = "RustCrypto/PAKEs" }
[dependencies]
-curve25519-dalek = "1"
+curve25519-dalek = "1.2"
rand = "0.6"
sha2 = "0.8"
hkdf = "0.8"