From 838d4e3e78f8a812d36b7af633f41add247bb59a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 2 May 2026 17:52:56 +0000 Subject: [PATCH] chore(deps): update reqwest requirement from 0.11 to 0.13 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.13.3) --- updated-dependencies: - dependency-name: reqwest dependency-version: 0.13.3 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 976fcd6..ed290db 100644 --- a/backend/Cargo.toml +++ b/backend/Cargo.toml @@ -16,7 +16,7 @@ tracing-subscriber = { version = "0.3", features = ["env-filter"] } tower-http = { version = "0.6", features = ["cors", "fs"] } anyhow = "1.0" thiserror = "2.0" -reqwest = { version = "0.11", features = ["json"] } +reqwest = { version = "0.13", features = ["json"] } qdrant-client = "1.9" async-trait = "0.1" multer = "3.0"