From 8ed567d80b9d8901256e1e0d417a3e10a0a47af2 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 9 Feb 2026 06:46:24 +0000 Subject: [PATCH] Update reqwest requirement from 0.12 to 0.13 in /crates/lib 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.0...v0.13.2) --- updated-dependencies: - dependency-name: reqwest dependency-version: 0.13.2 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- crates/lib/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/lib/Cargo.toml b/crates/lib/Cargo.toml index 5cd0e7d2a..fb1f3f440 100644 --- a/crates/lib/Cargo.toml +++ b/crates/lib/Cargo.toml @@ -22,7 +22,7 @@ strum = "0.27" strum_macros = "0.27" rusqlite = "0.37.0" regex = "1.11.1" -reqwest = { version = "0.12", features = ["stream", "blocking"] } +reqwest = { version = "0.13", features = ["stream", "blocking"] } async-compression = { version = "0.4", features = ["tokio", "gzip", "xz"] } tokio-tar = "0.3.1" tokio-util = { version = "0.7.13", features = ["compat"] }