From 90b8c9f0a6d50a621fd96f59743e564ad5beec97 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 29 Jun 2026 02:12:18 +0000 Subject: [PATCH] build(deps): Bump rand from 0.8.6 to 0.10.1 Bumps [rand](https://github.com/rust-random/rand) from 0.8.6 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.6...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 | 2 +- crates/driven-crypto/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 1fd11875..fd22a2eb 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1453,7 +1453,7 @@ dependencies = [ "chacha20poly1305", "keyring", "md-5 0.10.6", - "rand 0.8.6", + "rand 0.10.1", "thiserror 2.0.18", "tracing", "zeroize", diff --git a/crates/driven-crypto/Cargo.toml b/crates/driven-crypto/Cargo.toml index 2ca1ed5c..fc436349 100644 --- a/crates/driven-crypto/Cargo.toml +++ b/crates/driven-crypto/Cargo.toml @@ -36,4 +36,4 @@ md5 = { workspace = true } # `getrandom`-backed RNG for the per-file STREAM nonce, the wrapped-key # nonce, and fresh master / per-source key material (DESIGN s7.1). Pinned to # 0.8 to match `chacha20poly1305` 0.10's `rand_core` 0.6 `OsRng`. -rand = "0.8" +rand = "0.10"