From 6ed17c8cd928e3a4618a131f2035d0a0008bfe5f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 15 Dec 2025 18:07:13 +0000 Subject: [PATCH] chore(deps): update reqwest requirement in /reference-apps/rust 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.12.24...v0.12.26) --- updated-dependencies: - dependency-name: reqwest dependency-version: 0.12.26 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- reference-apps/rust/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reference-apps/rust/Cargo.toml b/reference-apps/rust/Cargo.toml index 79326ef..1c32931 100644 --- a/reference-apps/rust/Cargo.toml +++ b/reference-apps/rust/Cargo.toml @@ -9,7 +9,7 @@ actix-cors = "0.7" tokio = { version = "1.35", features = ["full"] } serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" -reqwest = { version = "=0.12.24", default-features = false, features = ["json", "rustls-tls-native-roots"] } +reqwest = { version = "=0.12.26", default-features = false, features = ["json", "rustls-tls-native-roots"] } chrono = { version = "=0.4.42" } log = "0.4" env_logger = "=0.11.8"