From dd54077a6829227427bee70e382ed4715c0f2e4f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 28 Jan 2025 03:20:13 +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 +- protocol/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 429ea69..9411e0b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -34,7 +34,7 @@ url = "2.2.2" tracing = "0.1" thiserror = "2.0" async-trait = "0.1.51" -rand = "0.8" +rand = "0.9" dashmap = "6.1.0" murmur3 = "0.5.2" diff --git a/protocol/Cargo.toml b/protocol/Cargo.toml index 1509c5e..629e39a 100644 --- a/protocol/Cargo.toml +++ b/protocol/Cargo.toml @@ -20,5 +20,5 @@ derive_more = "0.99" [dev-dependencies] fake = { version = "3.0", features=['derive', 'chrono','uuid']} -rand = "0.8" +rand = "0.9" pretty_assertions = "1.2.0"