diff --git a/Cargo.lock b/Cargo.lock index 21bc47d6c..90bb45104 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3467,9 +3467,9 @@ checksum = "dbb5fb1acd8a1a18b3dd5be62d25485eb770e05afb408a9627d14d451bae12da" [[package]] name = "reqwest" -version = "0.11.19" +version = "0.11.20" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "20b9b67e2ca7dd9e9f9285b759de30ff538aab981abaaf7bc9bd90b84a0126c3" +checksum = "3e9ad3fe7488d7e34558a2033d45a0c90b72d97b4f80705666fea71472e2e6a1" dependencies = [ "async-compression", "base64 0.21.2", @@ -4388,9 +4388,9 @@ dependencies = [ [[package]] name = "tokio-test" -version = "0.4.2" +version = "0.4.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "53474327ae5e166530d17f2d956afcb4f8a004de581b3cae10f12006bc8163e3" +checksum = "e89b3cbabd3ae862100094ae433e1def582cf86451b4e9bf83aa7ac1d8a7d719" dependencies = [ "async-stream", "bytes", diff --git a/tower-batch-control/Cargo.toml b/tower-batch-control/Cargo.toml index 6f1ef8e55..8e1f62281 100644 --- a/tower-batch-control/Cargo.toml +++ b/tower-batch-control/Cargo.toml @@ -42,7 +42,7 @@ ed25519-zebra = "4.0.1" rand = "0.8.5" tokio = { version = "1.32.0", features = ["full", "tracing", "test-util"] } -tokio-test = "0.4.2" +tokio-test = "0.4.3" tower-fallback = { path = "../tower-fallback/" } tower-test = "0.4.0" diff --git a/zebra-node-services/Cargo.toml b/zebra-node-services/Cargo.toml index a52ecad84..6dc65d949 100644 --- a/zebra-node-services/Cargo.toml +++ b/zebra-node-services/Cargo.toml @@ -43,7 +43,7 @@ zebra-chain = { path = "../zebra-chain" , version = "1.0.0-beta.28" } color-eyre = { version = "0.6.2", optional = true } jsonrpc-core = { version = "18.0.0", optional = true } # Security: avoid default dependency on openssl -reqwest = { version = "0.11.19", default-features = false, features = ["rustls-tls"], optional = true } +reqwest = { version = "0.11.20", default-features = false, features = ["rustls-tls"], optional = true } serde = { version = "1.0.188", optional = true } serde_json = { version = "1.0.105", optional = true } @@ -51,6 +51,6 @@ serde_json = { version = "1.0.105", optional = true } color-eyre = "0.6.2" jsonrpc-core = "18.0.0" -reqwest = { version = "0.11.19", default-features = false, features = ["rustls-tls"] } +reqwest = { version = "0.11.20", default-features = false, features = ["rustls-tls"] } serde = "1.0.188" serde_json = "1.0.105" diff --git a/zebra-utils/Cargo.toml b/zebra-utils/Cargo.toml index a3a939c5a..d3e3dc37e 100644 --- a/zebra-utils/Cargo.toml +++ b/zebra-utils/Cargo.toml @@ -86,7 +86,7 @@ itertools = { version = "0.11.0", optional = true } # These crates are needed for the search-issue-refs binary regex = { version = "1.9.4", optional = true } # Avoid default openssl dependency to reduce the dependency tree and security alerts. -reqwest = { version = "0.11.19", default-features = false, features = ["rustls-tls"], optional = true } +reqwest = { version = "0.11.20", default-features = false, features = ["rustls-tls"], optional = true } # These crates are needed for the zebra-checkpoints and search-issue-refs binaries tokio = { version = "1.32.0", features = ["full"], optional = true }