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"