From 06571574329e2c876dc6d86a8d169c100985f1bb Mon Sep 17 00:00:00 2001 From: Kasper Juul Hermansen Date: Tue, 3 Oct 2023 13:11:45 +0000 Subject: [PATCH] Update Rust crate reqwest to 0.11.22 --- Cargo.lock | 4 ++-- Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 0d7e262..d320169 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -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", diff --git a/Cargo.toml b/Cargo.toml index 3b034ff..9757cf3 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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"] }