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]