From 07ad38d2016b9a3de1ada2c0c689160297fbbaba Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 28 Apr 2025 12:09:39 +0000 Subject: [PATCH] Update rand_core requirement from 0.6 to 0.9 Updates the requirements on [rand_core](https://github.com/rust-random/rand) to permit the latest version. - [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_core-0.6.0...rand_core-0.6.4) --- updated-dependencies: - dependency-name: rand_core dependency-version: 0.6.4 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- sim/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sim/Cargo.toml b/sim/Cargo.toml index b5e23fe..539cca6 100644 --- a/sim/Cargo.toml +++ b/sim/Cargo.toml @@ -22,7 +22,7 @@ getrandom = { version = "0.2", features = ["js"] } js-sys = "0.3" lazy_static = "1.4" num-traits = "0.2" -rand_core = { version = "0.6", features = ["serde1"] } +rand_core = { version = "0.9", features = ["serde1"] } rand = { version = "0.8", features = ["serde1"] } rand_distr = { version = "0.4" } rand_pcg = { version = "0.3", features = ["serde1"] }