Skip to content

Commit 960ebd0

Browse files
committed
fix(host): bound ed25519-dalek below v3
Host test utilities use rand_core 0.6 through rand_chacha 0.3. Fresh lockfiles otherwise select ed25519-dalek 3 and fail the CryptoRng bound. Fixes #1705
1 parent 1d0a2c6 commit 960ebd0

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

soroban-env-host/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ sha2 = "0.10.8"
2424
hex-literal = "0.4.1"
2525
hmac = "0.12.1"
2626
# NB: We'll need to pin this again after switching the Core to the new env version.
27-
ed25519-dalek = {version = ">=2.0.0", features = ["rand_core"] }
27+
ed25519-dalek = {version = ">=2.0.0, <3.0.0", features = ["rand_core"] }
2828
# NB: this must match the same rand version used by ed25519-dalek above
2929
rand = "0.8.5"
3030
# NB: this must match the same rand_chacha version used by ed25519-dalek above

0 commit comments

Comments
 (0)