From 5db72345049ef0cb7d57d82257ffa28e12c3e080 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 9 Feb 2026 13:09:07 +0000 Subject: [PATCH] Update rand_core requirement from 0.9.5 to 0.10.0 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.0) --- updated-dependencies: - dependency-name: rand_core dependency-version: 0.10.0 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..d5f90d3b82c 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.0", optional = true } pyo3 = { workspace = true, optional = true, features = ["serde", "macros"] } [lints]