From d0cca313a92f43fff7829cd866273d6592f21d4c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 22 Apr 2026 21:58:50 +0000 Subject: [PATCH] Bump rand from 0.8.5 to 0.8.6 in /rs Bumps [rand](https://github.com/rust-random/rand) from 0.8.5 to 0.8.6. - [Release notes](https://github.com/rust-random/rand/releases) - [Changelog](https://github.com/rust-random/rand/blob/0.8.6/CHANGELOG.md) - [Commits](https://github.com/rust-random/rand/compare/0.8.5...0.8.6) --- updated-dependencies: - dependency-name: rand dependency-version: 0.8.6 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- rs/Cargo.lock | 14 +++++++------- rs/Cargo.toml | 2 +- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/rs/Cargo.lock b/rs/Cargo.lock index 7eec8a14..b7eb1cb2 100644 --- a/rs/Cargo.lock +++ b/rs/Cargo.lock @@ -870,7 +870,7 @@ dependencies = [ "autocfg", "num-integer", "num-traits", - "rand 0.8.5", + "rand 0.8.6", ] [[package]] @@ -1009,7 +1009,7 @@ dependencies = [ "opentelemetry_api", "ordered-float", "percent-encoding", - "rand 0.8.5", + "rand 0.8.6", "thiserror", ] @@ -1164,9 +1164,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", @@ -1328,7 +1328,7 @@ dependencies = [ "once_cell", "openssl", "poly1305", - "rand 0.8.5", + "rand 0.8.6", "russh-cryptovec", "russh-keys", "sha1", @@ -1759,7 +1759,7 @@ dependencies = [ "httparse", "log", "native-tls", - "rand 0.8.5", + "rand 0.8.6", "sha1", "thiserror", "url", @@ -1777,7 +1777,7 @@ dependencies = [ "log", "opentelemetry", "os_info", - "rand 0.8.5", + "rand 0.8.6", "regex", "reqwest", "russh", diff --git a/rs/Cargo.toml b/rs/Cargo.toml index 32bfe532..db2d07e3 100644 --- a/rs/Cargo.toml +++ b/rs/Cargo.toml @@ -19,7 +19,7 @@ tokio-tungstenite = { version = "0.20", optional = true, features = ["native-tls futures = { version = "0.3", optional = true } tungstenite = { version = "0.20", optional = true, features = ["native-tls"] } uuid = { version = "1.4", features = ["v4"], optional = true } -rand = "0.8.5" +rand = "0.8.6" 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 = "0.14"