Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ prometheus-client = "0.22"
prost = "0.13"
prost-build = "0.13"
raft-log = "0.4.1"
rand = { version = "0.8.5", features = ["small_rng", "serde1"] }
rand = { version = "0.10.1", features = ["small_rng", "serde1"] }
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P1 Badge Drop removed small_rng feature from rand 0.10

Updating rand to 0.10.1 while keeping features = ["small_rng", "serde1"] makes dependency resolution fail for crates that inherit this workspace dependency (for example crates/client/client and benchmark). In rand 0.10, small_rng was removed, so Cargo will reject this manifest when it tries to resolve rand 0.10.x, breaking builds/tests that use the workspace rand entry.

Useful? React with 👍 / 👎.

regex = "1.8.1"
rmp-serde = "1.1.1"
rotbl = { version = "0.2.10", features = [] }
Expand Down
Loading