From 31b7a83abe77fdbe1b78f6db134beb597020d70a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 27 Jan 2025 22:21:09 +0000 Subject: [PATCH] Update rand requirement from 0.8 to 0.9 Updates the requirements on [rand](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/0.8.0...0.8.5) --- updated-dependencies: - dependency-name: rand dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- Cargo.toml | 2 +- tests-web/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index cbdb353..05b774e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -34,7 +34,7 @@ tests-native = { path = "tests-native", default-features = false, features = ["r [target.'cfg(target_arch = "wasm32")'.dev-dependencies] getrandom = { version = "0.2", features = ["js"] } -rand = { version = "0.8", default-features = false, features = ["getrandom", "std_rng"] } +rand = { version = "0.9", default-features = false, features = ["getrandom", "std_rng"] } tests-web = { path = "tests-web", default-features = false, features = ["run"] } wasm-bindgen-test = { version = "0.3", default-features = false, features = [ "msrv", diff --git a/tests-web/Cargo.toml b/tests-web/Cargo.toml index c5e20c0..cf1ea7b 100644 --- a/tests-web/Cargo.toml +++ b/tests-web/Cargo.toml @@ -30,7 +30,7 @@ dlmalloc = "0.2" getrandom = { version = "0.2", features = ["js"] } js-sys = { version = "0.3", default-features = false } libm = "0.2" -rand = { version = "0.8", default-features = false, features = ["getrandom", "std_rng"] } +rand = { version = "0.9", default-features = false, features = ["getrandom", "std_rng"] } serde-json-core = { version = "0.6", optional = true, default-features = false } serde_json = { version = "1", optional = true, default-features = false, features = ["alloc"] } serde_test = { version = "1", optional = true, default-features = false }