From 1479409961f88282b74d0838cdd66e011ea00d70 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 20 Aug 2026 10:42:30 +0000 Subject: [PATCH] deps: bump rand from 0.8.7 to 0.10.2 Bumps [rand](https://github.com/rust-random/rand) from 0.8.7 to 0.10.2. - [Release notes](https://github.com/rust-random/rand/releases) - [Changelog](https://github.com/rust-random/rand/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-random/rand/compare/0.8.7...0.10.2) --- updated-dependencies: - dependency-name: rand dependency-version: 0.10.2 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 34 ++-------------------------------- core/Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 33 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 671ed65..9daf46c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1225,24 +1225,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", ] @@ -1257,16 +1246,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" @@ -1277,15 +1256,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" @@ -1960,7 +1930,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 542cb5f..70bf78a 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.2", features = ["bundled"] }