From 2ee168f8e1fa0a7fdd06b5cdb5787feb8db8045f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 31 Aug 2026 02:18:01 +0000 Subject: [PATCH] chore(deps): bump rand_chacha from 0.3.1 to 0.10.0 in /rust 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] --- rust/Cargo.lock | 18 +++++++++++++++++- rust/gkwasm/Cargo.toml | 2 +- 2 files changed, 18 insertions(+), 2 deletions(-) diff --git a/rust/Cargo.lock b/rust/Cargo.lock index fb6b14fc..5d09254e 100644 --- a/rust/Cargo.lock +++ b/rust/Cargo.lock @@ -1139,7 +1139,7 @@ dependencies = [ "ghostkey_lib", "js-sys", "rand 0.8.5", - "rand_chacha 0.3.1", + "rand_chacha 0.10.0", "serde", "serde_bytes", "wasm-bindgen", @@ -2109,6 +2109,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.1", +] + [[package]] name = "rand_core" version = "0.5.1" @@ -2127,6 +2137,12 @@ dependencies = [ "getrandom 0.2.15", ] +[[package]] +name = "rand_core" +version = "0.10.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "63b8176103e19a2643978565ca18b50549f6101881c443590420e4dc998a3c69" + [[package]] name = "rand_hc" version = "0.2.0" diff --git a/rust/gkwasm/Cargo.toml b/rust/gkwasm/Cargo.toml index c33908d6..d9a4691b 100644 --- a/rust/gkwasm/Cargo.toml +++ b/rust/gkwasm/Cargo.toml @@ -19,7 +19,7 @@ ciborium = "0.2.2" curve25519-dalek = { version = "4.1.3", features = ["rand_core", "serde"]} ed25519-dalek = { version = "2.1.1", features = ["rand_core", "serde"]} ghostkey_lib = { path = "../gklib" } -rand_chacha = "0.3.1" +rand_chacha = "0.10.0" [dev-dependencies] wasm-bindgen-test = "0.3.42"