From 7cb8e92a78c0b58235a482ca41d58c9e21388771 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 22 Dec 2025 17:32:39 +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.26...v0.12.27) --- updated-dependencies: - dependency-name: reqwest dependency-version: 0.12.27 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 1c32931..b3748a4 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.26", default-features = false, features = ["json", "rustls-tls-native-roots"] } +reqwest = { version = "=0.12.27", default-features = false, features = ["json", "rustls-tls-native-roots"] } chrono = { version = "=0.4.42" } log = "0.4" env_logger = "=0.11.8"