From 79e976d3af12005afb254c067e324e7eaabd6e0e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 19 Nov 2025 12:08:00 +0000 Subject: [PATCH] deps: update reqwest requirement from 0.11 to 0.12 in /backend 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.24) --- updated-dependencies: - dependency-name: reqwest dependency-version: 0.12.24 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- backend/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/Cargo.toml b/backend/Cargo.toml index 59fa0a01..071e6a52 100644 --- a/backend/Cargo.toml +++ b/backend/Cargo.toml @@ -37,7 +37,7 @@ unicode-normalization = "0.1" sha2 = "0.10" hmac = "0.12" subtle = "2.5" -reqwest = { version = "0.11", features = ["json"] } +reqwest = { version = "0.12", features = ["json"] } html-escape = "0.2" [dependencies.home]