diff --git a/Cargo.lock b/Cargo.lock index 9ca0a4a..a50398f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -164,7 +164,7 @@ dependencies = [ "ndarray-rand", "policy-oracle", "proptest", - "rand", + "rand 0.9.5", "serde", "serde_json", "thiserror 2.0.19", @@ -541,8 +541,8 @@ dependencies = [ "ndarray", "ndarray-rand", "proptest", - "rand", - "rand_distr", + "rand 0.9.5", + "rand_distr 0.6.0", "rayon", "serde", "thiserror 2.0.19", @@ -1284,8 +1284,8 @@ dependencies = [ "ndarray", "ndarray-rand", "proptest", - "rand", - "rand_distr", + "rand 0.9.5", + "rand_distr 0.6.0", "rayon", "serde", "thiserror 2.0.19", @@ -1352,8 +1352,8 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "180f724d496e84764e8ecf28fbe1da74ef231ec4ba15be65a9100be8445d73e3" dependencies = [ "ndarray", - "rand", - "rand_distr", + "rand 0.9.5", + "rand_distr 0.5.1", ] [[package]] @@ -1593,7 +1593,7 @@ dependencies = [ "bit-vec", "bitflags", "num-traits", - "rand", + "rand 0.9.5", "rand_chacha", "rand_xorshift", "regex-syntax", @@ -1638,7 +1638,7 @@ dependencies = [ "bytes", "getrandom 0.3.4", "lru-slab", - "rand", + "rand 0.9.5", "ring", "rustc-hash", "rustls", @@ -1692,7 +1692,17 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b9ef1d0d795eb7d84685bca4f72f3649f064e6641543d3a8c415898726a57b41" dependencies = [ "rand_chacha", - "rand_core", + "rand_core 0.9.5", +] + +[[package]] +name = "rand" +version = "0.10.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c7f5fa3a058cd35567ef9bfa5e75732bee0f9e4c55fa90477bef2dfcdbc4be80" +dependencies = [ + "getrandom 0.4.2", + "rand_core 0.10.1", ] [[package]] @@ -1702,7 +1712,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb" dependencies = [ "ppv-lite86", - "rand_core", + "rand_core 0.9.5", ] [[package]] @@ -1714,6 +1724,12 @@ dependencies = [ "getrandom 0.3.4", ] +[[package]] +name = "rand_core" +version = "0.10.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "63b8176103e19a2643978565ca18b50549f6101881c443590420e4dc998a3c69" + [[package]] name = "rand_distr" version = "0.5.1" @@ -1721,7 +1737,17 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6a8615d50dcf34fa31f7ab52692afec947c4dd0ab803cc87cb3b0b4570ff7463" dependencies = [ "num-traits", - "rand", + "rand 0.9.5", +] + +[[package]] +name = "rand_distr" +version = "0.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4d431c2703ccf129de4d45253c03f49ebb22b97d6ad79ee3ecfc7e3f4862c1d8" +dependencies = [ + "num-traits", + "rand 0.10.2", ] [[package]] @@ -1730,7 +1756,7 @@ version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "513962919efc330f829edb2535844d1b912b0fbe2ca165d613e4e8788bb05a5a" dependencies = [ - "rand_core", + "rand_core 0.9.5", ] [[package]] diff --git a/Cargo.toml b/Cargo.toml index d9e36f5..ddc4c7c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -30,7 +30,7 @@ ndarray-rand = "0.16" # NB: dependabot re-bumped this to 0.10 in #175 (build re-broke); reverted again # here. Consider a dependabot ignore for rand until ndarray-rand catches up. rand = "0.9" -rand_distr = "0.5" +rand_distr = "0.6" rayon = "1.12" # Serialization