diff --git a/Cargo.lock b/Cargo.lock index 8fb348a..0597256 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1201,24 +1201,13 @@ version = "6.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf" -[[package]] -name = "rand" -version = "0.8.7" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "22f6172bdec972074665ed81ed53b71da00bfc44b65a753cfde883ec4c702a1a" -dependencies = [ - "libc", - "rand_chacha 0.3.1", - "rand_core 0.6.4", -] - [[package]] name = "rand" version = "0.9.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b9ef1d0d795eb7d84685bca4f72f3649f064e6641543d3a8c415898726a57b41" dependencies = [ - "rand_chacha 0.9.0", + "rand_chacha", "rand_core 0.9.5", ] @@ -1233,16 +1222,6 @@ dependencies = [ "rand_core 0.10.1", ] -[[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", -] - [[package]] name = "rand_chacha" version = "0.9.0" @@ -1253,15 +1232,6 @@ dependencies = [ "rand_core 0.9.5", ] -[[package]] -name = "rand_core" -version = "0.6.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c" -dependencies = [ - "getrandom 0.2.17", -] - [[package]] name = "rand_core" version = "0.9.5" @@ -1925,7 +1895,7 @@ dependencies = [ "futures", "log", "parking_lot", - "rand 0.8.7", + "rand 0.10.2", "regex", "reqwest", "rusqlite", diff --git a/core/Cargo.toml b/core/Cargo.toml index 57c8dba..fb477b2 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -59,7 +59,7 @@ log = "0.4" parking_lot = "0.12" # `tree/tree/registry.rs` salts a tree id; the sync readers talk HTTP to the # provider APIs; the pipelines are `tracing`-instrumented. -rand = "0.8" +rand = "0.10" reqwest = { version = "0.12", default-features = false, features = ["json", "rustls-tls", "stream"] } tracing = "0.1" rusqlite = { version = "=0.40.0", features = ["bundled"] }