Skip to content

Commit 8516b40

Browse files
authored
update most code to rand 0.9 (#8828)
With this PR, almost all code now uses rand 0.9. The only exception is the bootstore which uses vsss-rs (and which I believe will be going away at some point).
1 parent 599481c commit 8516b40

File tree

48 files changed

+228
-216
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

48 files changed

+228
-216
lines changed

Cargo.lock

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

Cargo.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -639,12 +639,12 @@ propolis-mock-server = { git = "https://github.com/oxidecomputer/propolis", rev
639639
proptest = "1.7.0"
640640
qorb = "0.4.1"
641641
quote = "1.0"
642-
rand = "0.8.5"
643-
# We're still in the middle of migrating to rand 0.9.
644-
rand09 = { package = "rand", version = "0.9.1" }
645-
rand_core = "0.6.4"
646-
rand_distr = "0.4.3"
647-
rand_seeder = "0.3.0"
642+
# Some dependencies still require rand 0.8.x.
643+
rand08 = { package = "rand", version = "0.8.5" }
644+
rand = "0.9.2"
645+
rand_core = "0.9.3"
646+
rand_distr = "0.5.1"
647+
rand_seeder = "0.4.0"
648648
range-requests = { path = "range-requests" }
649649
ratatui = "0.29.0"
650650
rayon = "1.10"

0 commit comments

Comments
 (0)