From 519e085fce9b32a98b87377e13d852612362188e Mon Sep 17 00:00:00 2001 From: Kasper Juul Hermansen Date: Mon, 18 Dec 2023 21:30:02 +0000 Subject: [PATCH] Update Rust crate reqwest to 0.11.23 --- Cargo.lock | 4 ++-- Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index b7ddf10..4cb27d2 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -840,9 +840,9 @@ dependencies = [ [[package]] name = "reqwest" -version = "0.11.22" +version = "0.11.23" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "046cd98826c46c2ac8ddecae268eb5c2e58628688a5fc7a2643704a73faba95b" +checksum = "37b1ae8d9ac08420c66222fb9096fc5de435c3c48542bc5336c51892cffafb41" dependencies = [ "base64", "bytes", diff --git a/Cargo.toml b/Cargo.toml index 2a9d635..6084f61 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -10,5 +10,5 @@ chrono = "0.4.31" clap = { version = "4.4.11", features = ["derive", "env"] } eyre = "0.6.11" graphql_client = { version = "0.13.0", features = ["reqwest", "reqwest-blocking"] } -reqwest = { version = "0.11.22", features = ["blocking"] } +reqwest = { version = "0.11.23", features = ["blocking"] } serde = { version = "1.0.193", features = ["derive"] }