From e052d4ea97abac3e2ce7a0407783d701afc45da3 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 5 Jan 2026 09:22:50 +0000 Subject: [PATCH] deps(deps): update reqwest requirement from 0.12 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/compare/v0.12.0...v0.13.1) --- updated-dependencies: - dependency-name: reqwest dependency-version: 0.13.1 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- Cargo.toml | 2 +- common/repos-github/Cargo.toml | 2 +- plugins/repos-health/Cargo.toml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 9178811..666c93c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -26,7 +26,7 @@ serde_yaml = "0.9" serde_json = "1.0" tokio = { version = "1.0", features = ["full"] } anyhow = "1.0" -reqwest = { version = "0.12", features = ["json"] } +reqwest = { version = "0.13", features = ["json"] } colored = "3.0" chrono = { version = "0.4", features = ["serde"] } futures = "0.3" diff --git a/common/repos-github/Cargo.toml b/common/repos-github/Cargo.toml index 4ee7b31..0f41eff 100644 --- a/common/repos-github/Cargo.toml +++ b/common/repos-github/Cargo.toml @@ -5,6 +5,6 @@ edition = "2024" [dependencies] anyhow = "1.0" -reqwest = { version = "0.12", features = ["json"] } +reqwest = { version = "0.13", features = ["json"] } serde = { version = "1.0", features = ["derive"] } tokio = { version = "1.0", features = ["full"] } diff --git a/plugins/repos-health/Cargo.toml b/plugins/repos-health/Cargo.toml index 2d72783..3bbadcf 100644 --- a/plugins/repos-health/Cargo.toml +++ b/plugins/repos-health/Cargo.toml @@ -13,7 +13,7 @@ serde = { version = "1", features = ["derive"] } serde_json = "1" chrono = { version = "0.4", features = ["serde"] } tokio = { version = "1", features = ["full"] } -reqwest = { version = "0.12", features = ["json"] } +reqwest = { version = "0.13", features = ["json"] } [dependencies.repos] path = "../.."