Skip to content

Commit

Permalink
bump curve25519-dalek to 4.1 (#94)
Browse files Browse the repository at this point in the history
  • Loading branch information
pinkforest authored Sep 11, 2023
1 parent 7ad06a6 commit 9622f0a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
7 changes: 4 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,11 @@ resolver = "2"
features = ["nightly"]

[dependencies]
# "digest" is exempt from SemVer but breaking changes will bump minor versions
# "digest" (pre-1.0.0) is exempt from SemVer but breaking changes will bump minor versions
# (see https://github.com/dalek-cryptography/curve25519-dalek/tree/main/curve25519-dalek#stable)
# (see https://github.com/dalek-cryptography/curve25519-dalek/tree/main/curve25519-dalek#public-api-semver-exemptions)
# so only allow patch changes
curve25519-dalek = { version = "~4.0", default-features = false, features = ["alloc", "digest", "zeroize", "precomputed-tables"] }
# so only allow patch changes inside known compatible range
curve25519-dalek = { version = ">= 4.0, < 4.2", default-features = false, features = ["alloc", "digest", "zeroize", "precomputed-tables"] }
der = { version = "0.7.1", optional = true }
ed25519 = { version = "2.2.0", default-features = false }
hashbrown = "0.14.0"
Expand Down
2 changes: 1 addition & 1 deletion rust-toolchain
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.65.0
1.70.0

0 comments on commit 9622f0a

Please sign in to comment.