From 4d9ebb72818b376428da830c5af6c5fa82d45689 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 20 Nov 2025 18:13:20 +0000 Subject: [PATCH] chore(deps)(deps): bump rand_chacha from 0.3.1 to 0.9.0 Bumps [rand_chacha](https://github.com/rust-random/rand) from 0.3.1 to 0.9.0. - [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/rand_chacha-0.3.1...0.9.0) --- updated-dependencies: - dependency-name: rand_chacha dependency-version: 0.9.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 6 +++--- Cargo.toml | 2 +- crates/crypto/Cargo.toml | 2 +- crates/node/Cargo.toml | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) mode change 100755 => 100644 Cargo.lock mode change 100755 => 100644 Cargo.toml mode change 100755 => 100644 crates/crypto/Cargo.toml mode change 100755 => 100644 crates/node/Cargo.toml diff --git a/Cargo.lock b/Cargo.lock old mode 100755 new mode 100644 index 36e3ede0..e5714bd2 --- a/Cargo.lock +++ b/Cargo.lock @@ -361,7 +361,7 @@ dependencies = [ "bitquan-types", "bq-crypto", "rand 0.8.5", - "rand_chacha 0.3.1", + "rand_chacha 0.9.0", "thiserror 1.0.69", ] @@ -403,7 +403,7 @@ dependencies = [ "num_cpus", "pqc-dilithium-seeded", "rand 0.8.5", - "rand_chacha 0.3.1", + "rand_chacha 0.9.0", "reqwest", "rpassword", "rusqlite", @@ -556,7 +556,7 @@ dependencies = [ "pqc-dilithium-seeded", "proptest", "rand 0.8.5", - "rand_chacha 0.3.1", + "rand_chacha 0.9.0", "rand_core 0.6.4", "secrecy", "serde", diff --git a/Cargo.toml b/Cargo.toml old mode 100755 new mode 100644 index 9fc6f281..eca60a33 --- a/Cargo.toml +++ b/Cargo.toml @@ -48,5 +48,5 @@ thiserror = "1.0" zeroize = "1.8" http = "0.2" rand = "0.8" -rand_chacha = "0.3" +rand_chacha = "0.9" criterion = "0.5" diff --git a/crates/crypto/Cargo.toml b/crates/crypto/Cargo.toml old mode 100755 new mode 100644 index 58b0ef8b..7623fd66 --- a/crates/crypto/Cargo.toml +++ b/crates/crypto/Cargo.toml @@ -15,7 +15,7 @@ memory-security = ["memory-locking"] [dependencies] bitquan-types = { path = "../types", version = "0.1.0" } rand = "0.8" -rand_chacha = "0.3" +rand_chacha = "0.9" rand_core = "0.6" getrandom = "0.2" hkdf = "0.12" diff --git a/crates/node/Cargo.toml b/crates/node/Cargo.toml old mode 100755 new mode 100644 index 85ae5be3..72f09f08 --- a/crates/node/Cargo.toml +++ b/crates/node/Cargo.toml @@ -31,7 +31,7 @@ hmac = "0.12" num_cpus = "1.16" pqc-dilithium-seeded = { path = "../pqc-dilithium-seeded", version = "0.2.1" } rand = "0.8" -rand_chacha = "0.3" +rand_chacha = "0.9" serde.workspace = true serde_json = "1.0" sha2.workspace = true