From 0a578c823de993d09375ab112821156dcc3e34de Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 11 Dec 2025 06:33:29 +0000 Subject: [PATCH] chore(deps): update reqwest requirement from 0.11 to 0.12 Updates the requirements on [reqwest](https://github.com/seanmonstar/reqwest) to permit the latest version. - [Release notes](https://github.com/seanmonstar/reqwest/releases) - [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md) - [Commits](https://github.com/seanmonstar/reqwest/compare/v0.11.0...v0.12.25) --- updated-dependencies: - dependency-name: reqwest dependency-version: 0.12.25 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- crates/synapse-cli/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/synapse-cli/Cargo.toml b/crates/synapse-cli/Cargo.toml index 876ed6c1..54f9239e 100644 --- a/crates/synapse-cli/Cargo.toml +++ b/crates/synapse-cli/Cargo.toml @@ -13,7 +13,7 @@ synapse-infra = { path = "../synapse-infra" } # CLI clap = { workspace = true, features = ["derive"] } tokio = { workspace = true, features = ["full"] } -reqwest = { version = "0.11", features = ["stream"] } +reqwest = { version = "0.12", features = ["stream"] } # Logging tracing = { workspace = true }