bump curve25519-dalek to 4.1 (#94)

This commit is contained in:
pinkforest(she/her) 2023-09-12 03:48:06 +10:00 committed by GitHub
parent 7ad06a6896
commit 9622f0a784
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 4 deletions

View File

@ -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"

View File

@ -1 +1 @@
1.65.0
1.70.0