Update Rust crate reqwest to 0.11.16
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-03-27 16:07:22 +00:00
parent bed51de267
commit cb1c04fb9c
2 changed files with 3 additions and 3 deletions

4
Cargo.lock generated
View File

@ -851,9 +851,9 @@ dependencies = [
[[package]]
name = "reqwest"
version = "0.11.15"
version = "0.11.16"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0ba30cc2c0cd02af1222ed216ba659cdb2f879dfe3181852fe7c50b1d0005949"
checksum = "27b71749df584b7f4cac2c426c127a7c785a5106cc98f7a8feb044115f0fa254"
dependencies = [
"base64",
"bytes",

View File

@ -10,5 +10,5 @@ chrono = "0.4.24"
clap = { version = "4.1.13", features = ["derive", "env"] }
eyre = "0.6.8"
graphql_client = { version = "0.12.0", features = ["reqwest", "reqwest-blocking"] }
reqwest = { version = "0.11.15", features = ["blocking"] }
reqwest = { version = "0.11.16", features = ["blocking"] }
serde = { version = "1.0.158", features = ["derive"] }