From 6c6606727f1b3eaf0a6700f0fbc8b39df4a1c8ba Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 18 Jul 2026 01:05:50 +0000 Subject: [PATCH] chore(deps)(deps): update rand requirement from 0.9 to 0.10 Updates the requirements on [rand](https://github.com/rust-random/rand) to permit the latest version. - [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/commits/0.10.2) --- updated-dependencies: - dependency-name: rand dependency-version: 0.10.1 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- Cargo.toml | 2 +- crates/octo-adapter-nostr/Cargo.toml | 2 +- crates/octo-adapter-whatsapp/Cargo.toml | 2 +- crates/octo-cable/Cargo.toml | 2 +- crates/octo-network/Cargo.toml | 2 +- crates/quota-router-integration-tests/Cargo.toml | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 8ccf670b..81dee5df 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -95,7 +95,7 @@ directories = "6" # Async mutex parking_lot = "0.12" # Random number generation -rand = "0.9" +rand = "0.10" # Gzip compression (mission 0850p-a-session-export) flate2 = "1" # Bitflags (mission 0855p-c-sub-admins SubAdminAuthority) diff --git a/crates/octo-adapter-nostr/Cargo.toml b/crates/octo-adapter-nostr/Cargo.toml index 03286f1d..1d2bb59f 100644 --- a/crates/octo-adapter-nostr/Cargo.toml +++ b/crates/octo-adapter-nostr/Cargo.toml @@ -16,6 +16,6 @@ blake3 = "1.5" ed25519-dalek = { version = "2.1", features = ["serde"] } sha2 = "0.10" base64 = "0.22" -rand = "0.8" +rand = "0.10" async-trait = "0.1" octo-network = { path = "../octo-network" } diff --git a/crates/octo-adapter-whatsapp/Cargo.toml b/crates/octo-adapter-whatsapp/Cargo.toml index eaee626a..02ff5f0d 100644 --- a/crates/octo-adapter-whatsapp/Cargo.toml +++ b/crates/octo-adapter-whatsapp/Cargo.toml @@ -118,7 +118,7 @@ webpki-roots = "0.26" # X25519 for the ephemeral static pub we put in frame[0]. Wacore pins # x25519-dalek 2.0.1 in the lockfile (see Cargo.lock); pin the same major. x25519-dalek = { version = "2", features = ["static_secrets"] } -rand = "0.8" +rand = "0.10" [dev-dependencies] tempfile = "3" diff --git a/crates/octo-cable/Cargo.toml b/crates/octo-cable/Cargo.toml index dfe8d227..7d909e33 100644 --- a/crates/octo-cable/Cargo.toml +++ b/crates/octo-cable/Cargo.toml @@ -35,7 +35,7 @@ hmac = "0.12" subtle = "2" hkdf = "0.12" sha2 = "0.10" -rand = "0.8" +rand = "0.10" # Session 15: BLE service-data advertiser for caBLE v2 phase 2. # The caBLE v2 protocol carries the encrypted Eid (containing our diff --git a/crates/octo-network/Cargo.toml b/crates/octo-network/Cargo.toml index f82cc9cb..8067463f 100644 --- a/crates/octo-network/Cargo.toml +++ b/crates/octo-network/Cargo.toml @@ -22,7 +22,7 @@ chacha20poly1305 = "0.10" libloading = "0.8" wasmtime = { version = "36.0", optional = true } # Mission 0850p-d: nonce generation for DcOrchestrator -rand = "0.9" +rand = "0.10" # Stoolap Data Sync (RFC-0862) — leaf workspace dependency octo-sync = { path = "../../octo-sync" } diff --git a/crates/quota-router-integration-tests/Cargo.toml b/crates/quota-router-integration-tests/Cargo.toml index 22589faa..b8633d3a 100644 --- a/crates/quota-router-integration-tests/Cargo.toml +++ b/crates/quota-router-integration-tests/Cargo.toml @@ -14,7 +14,7 @@ tokio = { version = "1", features = ["macros", "rt-multi-thread", "time", "sync" async-trait = "0.1" bincode = "1" blake3 = "1.5" -rand = "0.8" +rand = "0.10" [dev-dependencies] hex = "0.4"