From 79a979878264c8530dd6c74803fe2707425d4c15 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 1 Jun 2026 16:11:29 +0000 Subject: [PATCH] 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. - [Release notes](https://github.com/rust-random/rand_core/releases) - [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 | 14 ++++++++++---- examples/random-generation-protocol/Cargo.toml | 2 +- 2 files changed, 11 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index c03b3df..2168627 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -412,7 +412,7 @@ checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404" dependencies = [ "libc", "rand_chacha", - "rand_core", + "rand_core 0.6.4", ] [[package]] @@ -422,7 +422,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88" dependencies = [ "ppv-lite86", - "rand_core", + "rand_core 0.6.4", ] [[package]] @@ -434,6 +434,12 @@ dependencies = [ "getrandom", ] +[[package]] +name = "rand_core" +version = "0.10.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "63b8176103e19a2643978565ca18b50549f6101881c443590420e4dc998a3c69" + [[package]] name = "rand_dev" version = "0.1.1" @@ -442,7 +448,7 @@ checksum = "cbee97c27dada05f03db49ffe6516872f6c926e0fd525f9ce0cb3c051adf145c" dependencies = [ "hex", "rand_chacha", - "rand_core", + "rand_core 0.6.4", ] [[package]] @@ -452,7 +458,7 @@ dependencies = [ "generic-array", "hex", "rand", - "rand_core", + "rand_core 0.10.1", "rand_dev", "round-based", "serde", diff --git a/examples/random-generation-protocol/Cargo.toml b/examples/random-generation-protocol/Cargo.toml index 2fa50bd..a5538f2 100644 --- a/examples/random-generation-protocol/Cargo.toml +++ b/examples/random-generation-protocol/Cargo.toml @@ -9,7 +9,7 @@ publish = false [dependencies] round-based = { path = "../../round-based", default-features = false, features = ["derive"] } -rand_core = { version = "0.6", default-features = false } +rand_core = { version = "0.10", default-features = false } sha2 = { version = "0.10", default-features = false } serde = { version = "1", default-features = false, features = ["derive"] }