From cf21f591a56775c6d90a62fb8fe5ba17f6423a11 Mon Sep 17 00:00:00 2001 From: Pierre Hubert Date: Sat, 16 Mar 2024 00:07:50 +0000 Subject: [PATCH] Update Rust crate reqwest to 0.11.26 --- Cargo.lock | 21 +++++++++++++++++++-- Cargo.toml | 2 +- 2 files changed, 20 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 1099c63..14995c6 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1432,9 +1432,9 @@ checksum = "a5996294f19bd3aae0453a862ad728f60e6600695733dd5df01da90c54363a3c" [[package]] name = "reqwest" -version = "0.11.21" +version = "0.11.26" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "78fdbab6a7e1d7b13cc8ff10197f47986b41c639300cc3c8158cac7847c9bbef" +checksum = "78bf93c4af7a8bb7d879d51cebe797356ff10ae8516ace542b5182d9dcac10b2" dependencies = [ "base64", "bytes", @@ -1454,9 +1454,11 @@ dependencies = [ "once_cell", "percent-encoding", "pin-project-lite", + "rustls-pemfile", "serde", "serde_json", "serde_urlencoded", + "sync_wrapper", "system-configuration", "tokio", "tokio-native-tls", @@ -1491,6 +1493,15 @@ dependencies = [ "windows-sys 0.48.0", ] +[[package]] +name = "rustls-pemfile" +version = "1.0.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1c74cae0a4cf6ccbbf5f359f08efdf8ee7e1dc532573bf0db71968cb56b1448c" +dependencies = [ + "base64", +] + [[package]] name = "ryu" version = "1.0.13" @@ -1673,6 +1684,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 70764b3..d52a664 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -15,5 +15,5 @@ actix-web = "4.5.1" askama = "0.12.1" serde = { version = "1.0.185", features = ["derive"] } serde_json = "1.0.105" -reqwest = { version = "0.11.21", features = ["json"] } +reqwest = { version = "0.11.26", features = ["json"] } actix-remote-ip = "0.1.0" \ No newline at end of file