From b3a6c242616591a515f9242c69fe5fdd54711fff Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 8 Jul 2026 03:13:59 +0000 Subject: [PATCH] chore(deps): update reqwest requirement from 0.11 to 0.13 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/commits/v0.12.28) --- updated-dependencies: - dependency-name: reqwest dependency-version: 0.12.28 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- Cargo.toml | 2 +- crates/server/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index f97ee63..ccd3197 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -25,7 +25,7 @@ tempfile = "3" anyhow = "1" thiserror = "1" regex = "1" -reqwest = { version = "0.11", features = ["json"] } +reqwest = { version = "0.13", features = ["json"] } base64 = "0.21" dirs = "5" chrono = "0.4" diff --git a/crates/server/Cargo.toml b/crates/server/Cargo.toml index e5dc208..a05fc0e 100644 --- a/crates/server/Cargo.toml +++ b/crates/server/Cargo.toml @@ -25,7 +25,7 @@ tempfile.workspace = true anyhow.workspace = true thiserror.workspace = true regex.workspace = true -reqwest = { version = "0.12", default-features = false, features = ["json", "rustls-tls", "http2", "charset"] } +reqwest = { version = "0.13", default-features = false, features = ["json", "rustls-tls", "http2", "charset"] } futures = "0.3" base64 = "0.22" dirs = "5"