Skip to content

Commit

Permalink
spake2: tighten the curve25519-dalek dependency to 1.2.x
Browse files Browse the repository at this point in the history
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 RustCrypto#21
  • Loading branch information
warner committed Aug 7, 2019
1 parent 6d3662e commit b58075f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion spake2/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit b58075f

Please sign in to comment.