From 5ceee3ef2e0dee94526984823a1eb0f387175f21 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sun, 10 May 2026 01:48:00 +0000 Subject: [PATCH] fix(deps): update rust crate reqwest to v0.13.3 --- Cargo.toml | 2 +- crates/forge_eventsource/Cargo.toml | 2 +- crates/forge_eventsource_stream/Cargo.toml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 208aa18735..b648fd73eb 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -66,7 +66,7 @@ quote = "1.0" reedline = "0.47.0" rustyline = "18.0.0" regex = "1.12.3" -reqwest = { version = "0.12.23", features = [ +reqwest = { version = "0.13.0", features = [ "json", "rustls-tls", "hickory-dns", diff --git a/crates/forge_eventsource/Cargo.toml b/crates/forge_eventsource/Cargo.toml index 4f1aad9d8f..cdd38fca65 100644 --- a/crates/forge_eventsource/Cargo.toml +++ b/crates/forge_eventsource/Cargo.toml @@ -6,7 +6,7 @@ rust-version.workspace = true [dependencies] forge_eventsource_stream.workspace = true -reqwest = { version = "0.12.0", default-features = false, features = ["stream"] } +reqwest = { version = "0.13.0", default-features = false, features = ["stream"] } futures-core = "0.3.5" pin-project-lite = "0.2.8" nom = "8.0.0" diff --git a/crates/forge_eventsource_stream/Cargo.toml b/crates/forge_eventsource_stream/Cargo.toml index 781dbd09f0..950a113fdd 100644 --- a/crates/forge_eventsource_stream/Cargo.toml +++ b/crates/forge_eventsource_stream/Cargo.toml @@ -16,6 +16,6 @@ pin-project-lite = "0.2.8" [dev-dependencies] futures = "0.3" http = "1.0" -reqwest = { version = "0.11", features = ["stream"] } +reqwest = { version = "0.13", features = ["stream"] } tokio = { version = "1.0", features = ["macros", "rt"] } url = "2.2"