From 1cf8120ebaaee4a4a676715cfea0bc9c8ad2b4ed Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 2 Mar 2026 12:43:27 +0000 Subject: [PATCH] Bump rand_chacha from 0.3.1 to 0.10.0 Bumps [rand_chacha](https://github.com/rust-random/rand) from 0.3.1 to 0.10.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.10.0) --- updated-dependencies: - dependency-name: rand_chacha dependency-version: 0.10.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 20 ++++++++++++++++++-- bt2usb/Cargo.toml | 2 +- 2 files changed, 19 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index ca22430..c6ff029 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -221,7 +221,7 @@ dependencies = [ "minicbor", "panic-probe", "portable-atomic", - "rand_chacha", + "rand_chacha 0.10.0", "rand_core 0.6.4", "sequential-storage", "static_cell", @@ -1664,6 +1664,16 @@ dependencies = [ "rand_core 0.6.4", ] +[[package]] +name = "rand_chacha" +version = "0.10.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3e6af7f3e25ded52c41df4e0b1af2d047e45896c2f3281792ed68a1c243daedb" +dependencies = [ + "ppv-lite86", + "rand_core 0.10.0", +] + [[package]] name = "rand_core" version = "0.6.4" @@ -1676,6 +1686,12 @@ version = "0.9.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "76afc826de14238e6e8c374ddcc1fa19e374fd8dd986b0d2af0d02377261d83c" +[[package]] +name = "rand_core" +version = "0.10.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0c8d0fd677905edcbeedbf2edb6494d676f0e98d54d5cf9bda0b061cb8fb8aba" + [[package]] name = "redox_syscall" version = "0.5.18" @@ -2015,7 +2031,7 @@ dependencies = [ "heapless 0.9.2", "p256", "rand", - "rand_chacha", + "rand_chacha 0.3.1", "rand_core 0.6.4", "static_cell", "trouble-host-macros", diff --git a/bt2usb/Cargo.toml b/bt2usb/Cargo.toml index cb4142e..ed93a7b 100644 --- a/bt2usb/Cargo.toml +++ b/bt2usb/Cargo.toml @@ -51,7 +51,7 @@ portable-atomic = { version = "1", features = ["critical-section"] } # Random number generation for BLE security rand_core = "0.6" -rand_chacha = { version = "0.3", default-features = false } +rand_chacha = { version = "0.10", default-features = false } # Flash storage for bonding embedded-storage = "0.3"