From 2b889e910b84e790f66be8e8bc305c290cc6ad3f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 10 Apr 2026 22:31:14 +0000 Subject: [PATCH] deps(deps): update rand requirement from 0.8 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/compare/0.8.0...0.10.0) --- updated-dependencies: - dependency-name: rand dependency-version: 0.10.0 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- Cargo.toml | 2 +- crates/oasis_autonomous/Cargo.toml | 2 +- crates/oasis_browser/Cargo.toml | 2 +- crates/oasis_manus/Cargo.toml | 2 +- crates/sentient_backup/Cargo.toml | 2 +- crates/sentient_enterprise/Cargo.toml | 2 +- crates/sentient_marketplace/Cargo.toml | 2 +- crates/sentient_tee/Cargo.toml | 2 +- dashboard/Cargo.toml | 2 +- 9 files changed, 9 insertions(+), 9 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index a2b40d77..e82c5fa6 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -136,7 +136,7 @@ async-trait = "0.1" futures = "0.3" # Random number generation -rand = "0.8" +rand = "0.10" # Error handling anyhow = "1" diff --git a/crates/oasis_autonomous/Cargo.toml b/crates/oasis_autonomous/Cargo.toml index 31c4091b..ca2afa26 100644 --- a/crates/oasis_autonomous/Cargo.toml +++ b/crates/oasis_autonomous/Cargo.toml @@ -26,7 +26,7 @@ chrono = { version = "0.4", features = ["serde"] } uuid = { version = "1.6", features = ["v4", "serde"] } # Random -rand = "0.8" +rand = "0.10" # Image processing image = "0.24" diff --git a/crates/oasis_browser/Cargo.toml b/crates/oasis_browser/Cargo.toml index bc7394d9..fa6b17f4 100644 --- a/crates/oasis_browser/Cargo.toml +++ b/crates/oasis_browser/Cargo.toml @@ -35,7 +35,7 @@ reqwest = { workspace = true } url = "2" # Random (stealth) -rand = "0.8" +rand = "0.10" # Logging log = { workspace = true } diff --git a/crates/oasis_manus/Cargo.toml b/crates/oasis_manus/Cargo.toml index 1f49f29c..9a6d41bd 100644 --- a/crates/oasis_manus/Cargo.toml +++ b/crates/oasis_manus/Cargo.toml @@ -29,7 +29,7 @@ chrono = { workspace = true } thiserror = { workspace = true } regex = "1.10" url = "2.5" -rand = "0.8" +rand = "0.10" base64 = "0.22" bytes = "1" diff --git a/crates/sentient_backup/Cargo.toml b/crates/sentient_backup/Cargo.toml index 7f1edec6..fa07e43b 100644 --- a/crates/sentient_backup/Cargo.toml +++ b/crates/sentient_backup/Cargo.toml @@ -21,7 +21,7 @@ flate2 = "1.0" sha2 = "0.10" hex = "0.4" regex = "1.10" -rand = "0.8" +rand = "0.10" pbkdf2 = "0.12" hmac = "0.12" aes-gcm = "0.10" diff --git a/crates/sentient_enterprise/Cargo.toml b/crates/sentient_enterprise/Cargo.toml index 01329623..44a74a3b 100644 --- a/crates/sentient_enterprise/Cargo.toml +++ b/crates/sentient_enterprise/Cargo.toml @@ -21,7 +21,7 @@ log = "0.4" # Security jsonwebtoken = "9" argon2 = "0.5" -rand = "0.8" +rand = "0.10" uuid = { version = "1", features = ["v4", "serde"] } # Database - using rusqlite for consistency with other crates diff --git a/crates/sentient_marketplace/Cargo.toml b/crates/sentient_marketplace/Cargo.toml index c593a84a..51a890f1 100644 --- a/crates/sentient_marketplace/Cargo.toml +++ b/crates/sentient_marketplace/Cargo.toml @@ -16,7 +16,7 @@ thiserror.workspace = true log.workspace = true chrono.workspace = true uuid.workspace = true -rand = "0.8" +rand = "0.10" # Semver for version handling semver = { version = "1", features = ["serde"] } diff --git a/crates/sentient_tee/Cargo.toml b/crates/sentient_tee/Cargo.toml index f62726dd..f76ba857 100644 --- a/crates/sentient_tee/Cargo.toml +++ b/crates/sentient_tee/Cargo.toml @@ -33,7 +33,7 @@ blake3 = "1.5" hex = "0.4" aes-gcm = "0.10" x25519-dalek = { version = "2", features = ["static_secrets"] } -rand = "0.8" +rand = "0.10" base64 = "0.22" # Networking diff --git a/dashboard/Cargo.toml b/dashboard/Cargo.toml index ef502cfc..43f05f59 100644 --- a/dashboard/Cargo.toml +++ b/dashboard/Cargo.toml @@ -19,7 +19,7 @@ tower = { workspace = true } tower-http = { workspace = true, features = ["fs", "cors"] } futures = "0.3" sysinfo = "0.30" -rand = "0.8" +rand = "0.10" [[bin]] name = "nexus-dashboard"