Skip to content

Commit 9fad922

Browse files
committed
fix: rollback Rust dependencies upgrade
- 'rand_core' to '0.6.4' - 'rand_chacha' to '0.3.1' - 'getrandom' to '0.2.15'.
1 parent 6493d20 commit 9fad922

File tree

3 files changed

+60
-118
lines changed

3 files changed

+60
-118
lines changed

Cargo.lock

Lines changed: 57 additions & 115 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,8 +56,8 @@ config = "0.15.15"
5656
digest = { version = "0.10.7", features = ["alloc"] }
5757
hex = "0.4.3"
5858
mockall = "0.13.1"
59-
rand_chacha = "0.9.0"
60-
rand_core = { version = "0.9.3", features = ["std"] }
59+
rand_chacha = "0.3.1"
60+
rand_core = { version = "0.6.4", features = ["std"] }
6161
rayon = "1.11.0"
6262
reqwest = { version = "0.12.23", default-features = false, features = ["json"] }
6363
semver = "1.0.26"

mithril-client/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ zstd = { version = "0.13.3", optional = true }
8080
mithril-cardano-node-internal-database = { path = "../internal/cardano-node/mithril-cardano-node-internal-database", version = "=0.1" }
8181

8282
[target.'cfg(target_family = "wasm")'.dependencies]
83-
getrandom = { version = "0.3.3", features = ["js"] }
83+
getrandom = { version = "0.2.1", features = ["js"] }
8484
uuid = { version = "1.18.1", features = ["v4", "js"] }
8585

8686
[dev-dependencies]

0 commit comments

Comments
 (0)