From 8ea746dee2eace68ba509835d7f86995e74bbecb Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 21 Apr 2025 20:12:16 +0000 Subject: [PATCH] chore(deps): update rand requirement from 0.8.5 to 0.9.1 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.5...rand_core-0.9.1) --- updated-dependencies: - dependency-name: rand dependency-version: 0.9.1 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- proxy/Cargo.toml | 2 +- shared/Cargo.toml | 2 +- tests/Cargo.toml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/proxy/Cargo.toml b/proxy/Cargo.toml index a4064e42..8250f529 100644 --- a/proxy/Cargo.toml +++ b/proxy/Cargo.toml @@ -49,4 +49,4 @@ sockets = ["dep:chacha20poly1305", "dep:dashmap", "tokio-util/codec", "tokio-uti build-data = "0" [dev-dependencies] -rand = "0.8.5" +rand = "0.9.1" diff --git a/shared/Cargo.toml b/shared/Cargo.toml index 15180f4c..66c161a2 100644 --- a/shared/Cargo.toml +++ b/shared/Cargo.toml @@ -28,7 +28,7 @@ tracing = "0.1" tracing-subscriber = { version = "0.3", features = ["env-filter"] } # Crypto -rand = "0.8" +rand = "0.9" rsa = "0.9" sha2 = "0.10" openssl = "0.10" diff --git a/tests/Cargo.toml b/tests/Cargo.toml index abaa9860..2f862b34 100644 --- a/tests/Cargo.toml +++ b/tests/Cargo.toml @@ -11,7 +11,7 @@ beam-lib = { workspace = true, features = ["http-util"] } once_cell = "1" serde_json = "1" anyhow = "1" -rand = "0.8" +rand = "0.9" serde = { version = "1", features = ["derive"] } reqwest = { version = "0.12", features = ["stream"], default-features = false } futures = "0.3.28"