diff --git a/Cargo.lock b/Cargo.lock index b1c5d774f..ffb8d0014 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -450,7 +450,7 @@ dependencies = [ "futures-util", "hickory-resolver", "http", - "rand 0.9.2", + "rand", "thiserror 2.0.16", "tracing", "url", @@ -753,7 +753,7 @@ dependencies = [ "idna", "ipnet", "once_cell", - "rand 0.9.2", + "rand", "ring", "thiserror 2.0.16", "tinyvec", @@ -775,7 +775,7 @@ dependencies = [ "moka", "once_cell", "parking_lot", - "rand 0.9.2", + "rand", "resolv-conf", "smallvec", "thiserror 2.0.16", @@ -1350,7 +1350,7 @@ dependencies = [ "os-release", "owo-colors", "plist", - "rand 0.8.5", + "rand", "reqwest", "semver", "serde", @@ -1620,7 +1620,7 @@ dependencies = [ "bytes 1.10.1", "getrandom 0.3.3", "lru-slab", - "rand 0.9.2", + "rand", "ring", "rustc-hash", "rustls", @@ -1661,35 +1661,14 @@ version = "5.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f" -[[package]] -name = "rand" -version = "0.8.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404" -dependencies = [ - "libc", - "rand_chacha 0.3.1", - "rand_core 0.6.4", -] - [[package]] name = "rand" version = "0.9.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6db2770f06117d490610c7488547d543617b21bfa07796d7a12f6f1bd53850d1" dependencies = [ - "rand_chacha 0.9.0", - "rand_core 0.9.3", -] - -[[package]] -name = "rand_chacha" -version = "0.3.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88" -dependencies = [ - "ppv-lite86", - "rand_core 0.6.4", + "rand_chacha", + "rand_core", ] [[package]] @@ -1699,16 +1678,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb" dependencies = [ "ppv-lite86", - "rand_core 0.9.3", -] - -[[package]] -name = "rand_core" -version = "0.6.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c" -dependencies = [ - "getrandom 0.2.16", + "rand_core", ] [[package]] diff --git a/Cargo.toml b/Cargo.toml index c0337b2e2..766f1f7b1 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -44,7 +44,7 @@ plist = { version = "=1.7.2", default-features = false, features = [ "serde" ]} dirs = { version = "5.0.0", default-features = false } typetag = { version = "0.2.17", default-features = false } dyn-clone = { version = "1.0.9", default-features = false } -rand = { version = "0.8.5", default-features = false, features = [ "std", "std_rng" ] } +rand = { version = "0.9.2", default-features = false, features = [ "std", "std_rng" ] } semver = { version = "1.0.23", default-features = false, features = ["serde", "std"] } term = { version = "1.0.0", default-features = false } uuid = { version = "1.2.2", features = ["serde"] }