From b34538e925f69a8cf01e22d9e6182549f6a90c46 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 3 May 2026 08:58:48 +0000 Subject: [PATCH] build(deps): bump rand from 0.8.5 to 0.10.1 Bumps [rand](https://github.com/rust-random/rand) from 0.8.5 to 0.10.1. - [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.5...0.10.1) --- updated-dependencies: - dependency-name: rand dependency-version: 0.10.1 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 31 +++++-------------------------- crates/agent/Cargo.toml | 2 +- crates/crypto/Cargo.toml | 2 +- crates/identity/Cargo.toml | 2 +- 4 files changed, 8 insertions(+), 29 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index d447c70a..60c8f670 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1058,7 +1058,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ccc2776f0c61eca1ca32528f85548abd1a4be8fb53d1b21c013e4f18da1e7090" dependencies = [ "data-encoding", - "syn 2.0.117", + "syn 1.0.109", ] [[package]] @@ -4014,24 +4014,13 @@ version = "6.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf" -[[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.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "44c5af06bb1b7d3216d91932aed5265164bf384dc89cd6ba05cf59a35f5f76ea" dependencies = [ - "rand_chacha 0.9.0", + "rand_chacha", "rand_core 0.9.5", ] @@ -4046,16 +4035,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" @@ -6105,7 +6084,7 @@ dependencies = [ "axum", "clap", "dirs", - "rand 0.8.5", + "rand 0.10.1", "rmcp", "schemars", "serde", @@ -6178,7 +6157,7 @@ dependencies = [ "getrandom 0.2.17", "getrandom 0.3.4", "hkdf", - "rand 0.8.5", + "rand 0.10.1", "serde", "sha2 0.10.9", "thiserror 2.0.18", @@ -6197,7 +6176,7 @@ dependencies = [ "getrandom 0.2.17", "getrandom 0.3.4", "iroh-base", - "rand 0.9.4", + "rand 0.10.1", "serde", "tempfile", "thiserror 2.0.18", diff --git a/crates/agent/Cargo.toml b/crates/agent/Cargo.toml index ae773b84..2393e0d9 100644 --- a/crates/agent/Cargo.toml +++ b/crates/agent/Cargo.toml @@ -30,7 +30,7 @@ clap = { version = "4", features = ["derive"] } tracing = { workspace = true } tracing-subscriber = { workspace = true } anyhow = { workspace = true } -rand = "0.8" +rand = "0.10" dirs = "6" subtle = "2" diff --git a/crates/crypto/Cargo.toml b/crates/crypto/Cargo.toml index 364b02ab..fbe360c8 100644 --- a/crates/crypto/Cargo.toml +++ b/crates/crypto/Cargo.toml @@ -16,7 +16,7 @@ curve25519-dalek = "4" hkdf = "0.12" sha2 = "0.10" blake3 = { workspace = true } -rand = "0.8" +rand = "0.10" serde = { workspace = true } thiserror = { workspace = true } zeroize = { workspace = true } diff --git a/crates/identity/Cargo.toml b/crates/identity/Cargo.toml index 0ecae1fd..5c7f1dcc 100644 --- a/crates/identity/Cargo.toml +++ b/crates/identity/Cargo.toml @@ -12,7 +12,7 @@ iroh-base = { workspace = true, features = ["key"] } serde = { workspace = true } thiserror = { workspace = true } chrono = { workspace = true } -rand = "0.9" +rand = "0.10" zeroize = { workspace = true } [target.'cfg(target_arch = "wasm32")'.dependencies]