From 37b67c751066142895505f2ed124486cd253bbf4 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 4 May 2026 19:25:54 +0000 Subject: [PATCH] Bump rand from 0.8.5 to 0.9.4 in /rs Bumps [rand](https://github.com/rust-random/rand) from 0.8.5 to 0.9.4. - [Release notes](https://github.com/rust-random/rand/releases) - [Changelog](https://github.com/rust-random/rand/blob/0.9.4/CHANGELOG.md) - [Commits](https://github.com/rust-random/rand/compare/0.8.5...0.9.4) --- updated-dependencies: - dependency-name: rand dependency-version: 0.8.6 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- rs/Cargo.lock | 12 ++++++------ rs/Cargo.toml | 4 ++-- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/rs/Cargo.lock b/rs/Cargo.lock index a4230df4..8bb0d939 100644 --- a/rs/Cargo.lock +++ b/rs/Cargo.lock @@ -1149,7 +1149,7 @@ dependencies = [ "autocfg", "num-integer", "num-traits", - "rand 0.8.5", + "rand 0.8.6", ] [[package]] @@ -1284,7 +1284,7 @@ dependencies = [ "opentelemetry_api", "ordered-float", "percent-encoding", - "rand 0.8.5", + "rand 0.8.6", "thiserror 1.0.31", ] @@ -1525,9 +1525,9 @@ dependencies = [ [[package]] name = "rand" -version = "0.8.5" +version = "0.8.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404" +checksum = "5ca0ecfa931c29007047d1bc58e623ab12e5590e8c7cc53200d5202b69266d8a" dependencies = [ "libc", "rand_chacha 0.3.1", @@ -1737,7 +1737,7 @@ dependencies = [ "once_cell", "openssl", "poly1305", - "rand 0.8.5", + "rand 0.8.6", "russh-cryptovec", "russh-keys", "sha1", @@ -2421,7 +2421,7 @@ dependencies = [ "opentelemetry", "os_info", "percent-encoding", - "rand 0.8.5", + "rand 0.9.4", "regex", "reqwest", "russh", diff --git a/rs/Cargo.toml b/rs/Cargo.toml index f5e12049..f8d48141 100644 --- a/rs/Cargo.toml +++ b/rs/Cargo.toml @@ -18,7 +18,7 @@ tokio-util = { version = "0.7", optional = true } tokio-tungstenite = { version = "0.29", optional = true, features = ["native-tls"] } futures-util = { version = "0.3", default-features = false, features = ["sink"], optional = true } uuid = { version = "1.4", features = ["v4"], optional = true } -rand = "0.8.5" +rand = "0.9.4" russh = { version = "0.37.1", default-features = false, features = ["openssl", "flate2"], optional = true } russh-keys = { version = "0.37.1", default-features = false, features = ["openssl"], optional = true } hyper = { version = "1.9", optional = true } @@ -32,7 +32,7 @@ percent-encoding = "2.3" [dev-dependencies] tokio = { version = "1.20", features = ["full"] } -rand = "0.8" +rand = "0.9" regex = "1" [features]