Skip to content

Commit d91b039

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 10e5979 commit d91b039

File tree

4 files changed

+7
-11
lines changed

4 files changed

+7
-11
lines changed

Cargo.lock

Lines changed: 3 additions & 7 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
@@ -48,8 +48,8 @@ config = "0.15.11"
4848
digest = { version = "0.10.7", features = ["alloc"] }
4949
hex = "0.4.3"
5050
mockall = "0.13.1"
51-
rand_chacha = "0.9.0"
52-
rand_core = { version = "0.9.3", features = ["std"] }
51+
rand_chacha = "0.3.1"
52+
rand_core = { version = "0.6.4", features = ["std"] }
5353
rayon = "1.10.0"
5454
reqwest = { version = "0.12.19", default-features = false, features = ["json"] }
5555
semver = "1.0.26"

mithril-client/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ mithril-common = { path = "../mithril-common", version = "=0.5", default-feature
8181
] }
8282

8383
[target.'cfg(target_family = "wasm")'.dependencies]
84-
getrandom = { version = "0.3.3", features = ["js"] }
84+
getrandom = { version = "0.2.15", features = ["js"] }
8585
mithril-common = { path = "../mithril-common", version = "=0.5", default-features = false }
8686
uuid = { version = "1.17.0", features = ["v4", "js"] }
8787

mithril-stm/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ num-traits = { version = "0.2.19", optional = true }
4545
rug = { version = "1.27.0", optional = true }
4646

4747
[dev-dependencies]
48-
bincode = "2.0.1"
48+
bincode = "1.3.3"
4949
criterion = { version = "0.6.0", features = ["html_reports"] }
5050
num-bigint = "0.4.6"
5151
num-rational = "0.4.2"

0 commit comments

Comments
 (0)