From d1b64fa3b24abb8bc759ec3d5e20c8a5346bdadf Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 27 Apr 2026 19:22:43 +0000 Subject: [PATCH] build(deps): bump rand_core from 0.6.4 to 0.10.1 Bumps [rand_core](https://github.com/rust-random/rand_core) from 0.6.4 to 0.10.1. - [Changelog](https://github.com/rust-random/rand_core/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-random/rand_core/compare/v0.6.4...v0.10.1) --- updated-dependencies: - dependency-name: rand_core dependency-version: 0.10.1 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 2 +- crypto/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index aebb427017..6f87dcdbb0 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1106,7 +1106,7 @@ dependencies = [ "proteus-wasm", "rand 0.8.6", "rand_chacha 0.3.1", - "rand_core 0.6.4", + "rand_core 0.10.1", "rmp-serde", "rstest", "rstest_reuse", diff --git a/crypto/Cargo.toml b/crypto/Cargo.toml index 0f49347d9d..b1bf358607 100644 --- a/crypto/Cargo.toml +++ b/crypto/Cargo.toml @@ -71,7 +71,7 @@ x509-cert = { workspace = true, features = ["builder", "hazmat"] } web-time = "1.1.0" rand = { workspace = true, features = ["getrandom"] } getrandom = { version = "0.2", features = ["js"] } -rand_core = "0.6" +rand_core = "0.10" rand_chacha = "0.3" [dependencies.hpke]