From 741294037a2c823e7532899a7ad65d887e061ea8 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 27 Jan 2025 14:44:58 +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.9.0) --- updated-dependencies: - dependency-name: rand dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 2d6fbf7..5e4a871 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -24,7 +24,7 @@ tracing = {version = "0.1", default-features = false, features = ["std"]} tokio-tungstenite = {version = "0.26", default-features = false} [dev-dependencies] -rand = {version = "0.8", default-features = false, features = ["std", "std_rng"]} +rand = {version = "0.9", default-features = false, features = ["std", "std_rng"]} serde = {version = "1.0", features = ["derive"]} test-log = {version = "0.2.8", default-features = false, features = ["trace"]} tokio = {version = "1.8", default-features = false, features = ["rt", "macros", "net", "test-util"]}