diff --git a/Cargo.lock b/Cargo.lock index 635038e..6ccc274 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1206,9 +1206,9 @@ checksum = "dc33ff2d4973d518d823d61aa239014831e521c75da58e3df4840d3f47749d09" [[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", diff --git a/core/Cargo.toml b/core/Cargo.toml index 0de327f..cfc6c8d 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -13,7 +13,7 @@ indexmap = "1.9.2" peers = { path = "../peers" } futures = "0.3.25" nom = "7.1.3" -rand = "0.8.5" +rand = "0.8.6" thiserror = "1.0.38" tokio = { version = "1.24.2", features = ["io-std", "io-util", "fs", "net", "rt-multi-thread", "parking_lot"] } tokio-stream = "0.1.11" diff --git a/peers/Cargo.toml b/peers/Cargo.toml index 4d31227..437bded 100644 --- a/peers/Cargo.toml +++ b/peers/Cargo.toml @@ -6,4 +6,4 @@ edition = "2021" [dependencies] array_utils = { path = "../array_utils" } phf = { version = "0.11.1", features = ["macros"] } -rand = "0.8.5" +rand = "0.8.6" diff --git a/tracker/Cargo.toml b/tracker/Cargo.toml index 62e292a..aee3db7 100644 --- a/tracker/Cargo.toml +++ b/tracker/Cargo.toml @@ -9,11 +9,11 @@ form_urlencoded = "1.0.1" hyper = { version = "0.14.23", default-features = false, features = ["client", "http1", "http2", "runtime", "stream", "tcp"] } hyper-tls = "0.5.0" nom = "7.1.3" -rand = "0.8.5" +rand = "0.8.6" tokio = { version = "1.24.2", features = ["io-std", "io-util", "fs", "net", "rt-multi-thread", "parking_lot", "macros"] } tokio-tungstenite = "0.18.0" url = "2.3.1" [dev-dependencies] array_utils = { path = "../array_utils" } -rand = "0.8.5" +rand = "0.8.6"