From aab533909491b0042b92b608739833dba8275dc9 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 27 Jul 2026 06:21:15 +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.12.28) --- updated-dependencies: - dependency-name: reqwest dependency-version: 0.12.28 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- executor/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/executor/Cargo.toml b/executor/Cargo.toml index 3e47472..32a98b0 100644 --- a/executor/Cargo.toml +++ b/executor/Cargo.toml @@ -24,7 +24,7 @@ bindgen = { version = "0.72", default-features = false, features = ["runtime"] } pkg-config = "0.3" [dev-dependencies] -reqwest = { version = "0.12", default-features = false, features = ["blocking", "json", "rustls-tls-manual-roots"] } +reqwest = { version = "0.13", default-features = false, features = ["blocking", "json", "rustls-tls-manual-roots"] } [[example]] name = "mtmpg_executor_fixture"