From 3aa7beb012fd7e5f814193e7666dea1f0357736b Mon Sep 17 00:00:00 2001 From: Pierre Hubert Date: Sat, 20 Apr 2024 00:12:22 +0000 Subject: [PATCH] Update Rust crate reqwest to 0.12.4 --- Cargo.lock | 4 ++-- Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 542daf8..b765964 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1500,9 +1500,9 @@ checksum = "c08c74e62047bb2de4ff487b251e4a92e24f48745648451635cec7d591162d9f" [[package]] name = "reqwest" -version = "0.12.3" +version = "0.12.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3e6cc1e89e689536eb5aeede61520e874df5a4707df811cd5da4aa5fbb2aae19" +checksum = "566cafdd92868e0939d3fb961bd0dc25fcfaaed179291093b3d43e6b3150ea10" dependencies = [ "base64 0.22.0", "bytes", diff --git a/Cargo.toml b/Cargo.toml index 84edd2f..a3510c0 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -18,7 +18,7 @@ futures = "0.3.30" webpki = "0.22.4" x509-parser = "0.16.0" pem = "3.0.4" -reqwest = { version = "0.12.3", features = ["json", "rustls-tls"], default-features = false } +reqwest = { version = "0.12.4", features = ["json", "rustls-tls"], default-features = false } tokio-tungstenite = { version = "0.20.0", features = ["__rustls-tls", "rustls-tls-native-roots"] } urlencoding = "2.1.3" hyper-rustls = { version = "0.23.2", features = ["rustls-native-certs"] }