Update Rust crate reqwest to 0.11.27
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 2024-03-19 19:16:22 +00:00
parent 990f509b3f
commit 13c7064a07
2 changed files with 3 additions and 3 deletions

4
Cargo.lock generated
View File

@ -827,9 +827,9 @@ dependencies = [
[[package]]
name = "reqwest"
version = "0.11.26"
version = "0.11.27"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "78bf93c4af7a8bb7d879d51cebe797356ff10ae8516ace542b5182d9dcac10b2"
checksum = "dd67538700a17451e7cba03ac727fb961abb7607553461627b97de0b89cf4a62"
dependencies = [
"base64",
"bytes",

View File

@ -10,5 +10,5 @@ chrono = "0.4.35"
clap = { version = "4.5.3", features = ["derive", "env"] }
eyre = "0.6.12"
graphql_client = { version = "0.13.0", features = ["reqwest", "reqwest-blocking"] }
reqwest = { version = "0.11.26", features = ["blocking"] }
reqwest = { version = "0.11.27", features = ["blocking"] }
serde = { version = "1.0.197", features = ["derive"] }