]> git.lizzy.rs Git - PAKEs.git/commitdiff
spake2: tighten the curve25519-dalek dependency to 1.2.x
authorBrian Warner <warner@lothar.com>
Wed, 7 Aug 2019 18:09:39 +0000 (11:09 -0700)
committerBrian Warner <warner@lothar.com>
Wed, 7 Aug 2019 20:56:43 +0000 (13:56 -0700)
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

spake2/Cargo.toml

index a0ed4f8755949b3f3882b1ebf6b37eb4764e2f22..3d930beef99072f00e4806e1c2944597eca360b7 100644 (file)
@@ -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"