Update Rust crate reqwest to 0.11.22
All checks were successful
continuous-integration/drone/pr Build is passing
continuous-integration/drone/push Build is passing

This commit is contained in:
Kasper Juul Hermansen 2023-10-03 13:11:45 +00:00
parent b066581f10
commit 0657157432
2 changed files with 3 additions and 3 deletions

4
Cargo.lock generated
View File

@ -840,9 +840,9 @@ dependencies = [
[[package]]
name = "reqwest"
version = "0.11.21"
version = "0.11.22"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "78fdbab6a7e1d7b13cc8ff10197f47986b41c639300cc3c8158cac7847c9bbef"
checksum = "046cd98826c46c2ac8ddecae268eb5c2e58628688a5fc7a2643704a73faba95b"
dependencies = [
"base64",
"bytes",

View File

@ -10,5 +10,5 @@ chrono = "0.4.31"
clap = { version = "4.4.6", features = ["derive", "env"] }
eyre = "0.6.8"
graphql_client = { version = "0.13.0", features = ["reqwest", "reqwest-blocking"] }
reqwest = { version = "0.11.21", features = ["blocking"] }
reqwest = { version = "0.11.22", features = ["blocking"] }
serde = { version = "1.0.188", features = ["derive"] }