build(deps): bump the async group with 2 updates (#7397)

Bumps the async group with 2 updates: [reqwest](https://github.com/seanmonstar/reqwest) and [tokio-test](https://github.com/tokio-rs/tokio).


Updates `reqwest` from 0.11.19 to 0.11.20
- [Release notes](https://github.com/seanmonstar/reqwest/releases)
- [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md)
- [Commits](https://github.com/seanmonstar/reqwest/compare/v0.11.19...v0.11.20)

Updates `tokio-test` from 0.4.2 to 0.4.3
- [Release notes](https://github.com/tokio-rs/tokio/releases)
- [Commits](https://github.com/tokio-rs/tokio/compare/tokio-test-0.4.2...tokio-test-0.4.3)

---
updated-dependencies:
- dependency-name: reqwest
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: async
- dependency-name: tokio-test
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: async
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
This commit is contained in:
dependabot[bot] 2023-08-29 10:08:25 +00:00 committed by GitHub
parent ff60260464
commit 6ec670e45a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 8 additions and 8 deletions

View File

@ -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",

View File

@ -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"

View File

@ -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"

View File

@ -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 }