From 74afd83d6a8cdb2eb64d05fea2c57184e8c31cea Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 22 Apr 2026 11:56:19 +0000 Subject: [PATCH] Update rand_core requirement from 0.9.5 to 0.10.1 Updates the requirements on [rand_core](https://github.com/rust-random/rand_core) to permit the latest version. - [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.10.0-rc-1...v0.10.1) --- updated-dependencies: - dependency-name: rand_core dependency-version: 0.10.1 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- crates/fast_rands/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/fast_rands/Cargo.toml b/crates/fast_rands/Cargo.toml index ea8eca8977b..ad675b618f8 100644 --- a/crates/fast_rands/Cargo.toml +++ b/crates/fast_rands/Cargo.toml @@ -50,7 +50,7 @@ serde = { workspace = true, default-features = false, features = [ ] } # serialization lib # Document all features of this crate (for `cargo doc`) document-features = { workspace = true, optional = true } -rand_core = { version = "0.9.5", optional = true } +rand_core = { version = "0.10.1", optional = true } pyo3 = { workspace = true, optional = true, features = ["serde", "macros"] } [lints]