From b72e624e69d47984ac983a0c6a0043de65df91c6 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 8 Oct 2025 02:14:14 +0000 Subject: [PATCH] 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.11.27) --- updated-dependencies: - dependency-name: reqwest dependency-version: 0.11.27 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 90768635..0ea12923 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -40,7 +40,7 @@ service_example = { path = "examples/service_example" } # External crates # ============== bon = {version = "3.8.0", default-features = false} -reqwest = { version = "0.11", default-features = false, features = ["rustls-tls", "json", "gzip"] } +reqwest = { version = "0.12", default-features = false, features = ["rustls-tls", "json", "gzip"] } serde = { version = "1.0",features = ["derive"]} tokio = { version = "1", default-features = false, features = ["macros", "net", "rt-multi-thread", "signal", "time"] } tonic = { version = "0.14.2", features = ["transport"] }