From 331bec37423cf60ce03f79a0cb52ec6ba23ffdbb Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 28 Jan 2025 03:37:33 +0000 Subject: [PATCH] Update rand requirement from 0.8 to 0.9 in /agde 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.9.0) --- updated-dependencies: - dependency-name: rand dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- agde/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/agde/Cargo.toml b/agde/Cargo.toml index a769025..8b45970 100644 --- a/agde/Cargo.toml +++ b/agde/Cargo.toml @@ -21,7 +21,7 @@ dach = { path = "../dach", features = ["serde"] } semver = { version = "1", features = ["serde"] } serde = { version = "1", features = ["derive"] } xxhash-rust = { version = "0.8", features = ["xxh3"] } -rand = "0.8" +rand = "0.9" [target.'cfg(all(target_arch = "wasm32", target_os = "unknown"))'.dependencies] getrandom = { version = "0.2", features = ["js"] }