From 3c112a8085a9f98ad534c9d10c662bae409351e9 Mon Sep 17 00:00:00 2001 From: phoenix Date: Sun, 29 Jun 2025 17:41:37 -0400 Subject: [PATCH] Updated reqwest --- Cargo.lock | 11 ++++------- Cargo.toml | 2 +- 2 files changed, 5 insertions(+), 8 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index fc99adf..dc40fe3 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -973,13 +973,12 @@ checksum = "74765f6d916ee2faa39bc8e68e4f3ed8949b48cccdac59983d287a7cb71ce9c5" [[package]] name = "rand" -version = "0.9.0" +version = "0.9.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3779b94aeb87e8bd4e834cee3650289ee9e0d5677f976ecdb6d219e5f4f6cd94" +checksum = "9fbfd9d094a40bf3ae768db9361049ace4c0e04a4fd6b359518bd7b73a73dd97" dependencies = [ "rand_chacha", "rand_core", - "zerocopy", ] [[package]] @@ -1012,9 +1011,9 @@ dependencies = [ [[package]] name = "reqwest" -version = "0.12.19" +version = "0.12.20" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a2f8e5513d63f2e5b386eb5106dc67eaf3f84e95258e210489136b8b92ad6119" +checksum = "eabf4c97d9130e2bf606614eb937e86edac8292eaa6f422f995d7e8de1eb1813" dependencies = [ "base64", "bytes", @@ -1029,13 +1028,11 @@ dependencies = [ "hyper-rustls", "hyper-tls", "hyper-util", - "ipnet", "js-sys", "log", "mime", "mime_guess", "native-tls", - "once_cell", "percent-encoding", "pin-project-lite", "rustls-pki-types", diff --git a/Cargo.toml b/Cargo.toml index ddf32ca..04cd2f0 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -7,7 +7,7 @@ rust-version = "1.86" [dependencies] tokio = { version = "1.45.1", features = ["full"] } futures = { version = "0.3.31" } -reqwest = { version = "0.12.19", features = ["json", "stream", "multipart"] } +reqwest = { version = "0.12.20", features = ["json", "stream", "multipart"] } serde = { version = "1.0.219", features = ["derive"] } serde_json = { version = "1.0.140" } time = { version = "0.3.41", features = ["macros", "serde"] }