From e5f9291cd7d16c1d0aa94e49981b574a4f84a259 Mon Sep 17 00:00:00 2001 From: Pierre Hubert Date: Wed, 20 Mar 2024 00:07:10 +0000 Subject: [PATCH] Update Rust crate reqwest to 0.11.27 --- Cargo.lock | 4 ++-- Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index c44377f..6fb5000 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1399,9 +1399,9 @@ checksum = "c08c74e62047bb2de4ff487b251e4a92e24f48745648451635cec7d591162d9f" [[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", diff --git a/Cargo.toml b/Cargo.toml index ae252ca..ff118dd 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.3" -reqwest = { version = "0.11.26", features = ["json", "rustls-tls"], default-features = false } +reqwest = { version = "0.11.27", 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"] }