From a9c806bd64e42556fd9676c30da430a8e6bbb3f4 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 31 Jan 2025 19:38:21 +0000 Subject: [PATCH] Update reqwest requirement from 0.11 to 0.12 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.11.0...v0.12.12) --- updated-dependencies: - dependency-name: reqwest 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 2adc98a3..82a0c44f 100644 --- a/crates/lib/Cargo.toml +++ b/crates/lib/Cargo.toml @@ -22,7 +22,7 @@ strum = "0.24" strum_macros = "0.24" rusqlite = "0.32.1" regex = "1.11.1" -reqwest = { version = "0.11", features = ["stream", "blocking"] } +reqwest = { version = "0.12", 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"] }