From 0b639556384d495ebae77762e251a5a37a7c4830 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 14 Sep 2026 19:59:38 +0000 Subject: [PATCH] build(deps): bump rand_core from 0.9.5 to 0.10.1 in /firmware Bumps [rand_core](https://github.com/rust-lang-nursery/rand) from 0.9.5 to 0.10.1. - [Release notes](https://github.com/rust-lang-nursery/rand/releases) - [Changelog](https://github.com/rust-random/rand/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang-nursery/rand/compare/0.9.5...0.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] --- firmware/Cargo.lock | 2 +- firmware/core/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/firmware/Cargo.lock b/firmware/Cargo.lock index 6f2caec..4b7d9e7 100644 --- a/firmware/Cargo.lock +++ b/firmware/Cargo.lock @@ -1712,7 +1712,7 @@ dependencies = [ "ed25519-dalek", "embedded-storage", "hmac", - "rand_core 0.9.5", + "rand_core 0.10.1", "sha1", "sha2 0.11.0", "subtle", diff --git a/firmware/core/Cargo.toml b/firmware/core/Cargo.toml index 1392f69..3e1058b 100644 --- a/firmware/core/Cargo.toml +++ b/firmware/core/Cargo.toml @@ -15,7 +15,7 @@ workspace = true [dependencies] # Hardware comes in through traits: flash, entropy, time, the port, the button and LED. embedded-storage = "0.3" -rand_core = "0.9" +rand_core = "0.10" # Crypto: pure Rust, no_std, from RustCrypto. No hand-rolled primitives. The zeroize # features make the crates scrub their expanded keys and HMAC pads when dropped.