From d2e048e6964feb3c6ea00a84e2a2603d81c787f3 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Wed, 31 Jan 2024 19:46:43 +0000 Subject: [PATCH] Update Rust crate reqwest to 0.11.24 --- Cargo.lock | 11 +++++++++-- Cargo.toml | 2 +- 2 files changed, 10 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 339cbf4..629e34f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1121,9 +1121,9 @@ dependencies = [ [[package]] name = "reqwest" -version = "0.11.23" +version = "0.11.24" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "37b1ae8d9ac08420c66222fb9096fc5de435c3c48542bc5336c51892cffafb41" +checksum = "c6920094eb85afde5e4a138be3f2de8bbdf28000f0029e72c45025a56b042251" dependencies = [ "async-compression", "base64", @@ -1148,6 +1148,7 @@ dependencies = [ "serde", "serde_json", "serde_urlencoded", + "sync_wrapper", "system-configuration", "tokio", "tokio-rustls", @@ -1366,6 +1367,12 @@ dependencies = [ "unicode-ident", ] +[[package]] +name = "sync_wrapper" +version = "0.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2047c6ded9c721764247e62cd3b03c09ffc529b2ba5b10ec482ae507a4a70160" + [[package]] name = "system-configuration" version = "0.5.1" diff --git a/Cargo.toml b/Cargo.toml index 753f0ba..7633386 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -11,7 +11,7 @@ actix-web = "4.4.1" lazy_static = "1.4.0" redis = { version = "0.24.0", default-features = false, features = ["tokio-comp", "connection-manager"] } regex = "1.10.3" -reqwest = { version = "0.11.23", default-features = false, features = ["rustls-tls", "gzip", "json", "socks"] } +reqwest = { version = "0.11.24", default-features = false, features = ["rustls-tls", "gzip", "json", "socks"] } serde = {version = "1.0.196", default-features = false, features = ["derive"]} serde_json = "1.0.113" tokio = { version = "1.35.1", features = ["full"] }