From fe04e3de829fb81a83032fba067b2f3d945e4398 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 25 Mar 2024 11:05:34 -0400 Subject: [PATCH] build(deps): update reqwest requirement from 0.11 to 0.12 (#15) 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.2) --- updated-dependencies: - dependency-name: reqwest dependency-type: direct:production ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- ctltool/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ctltool/Cargo.toml b/ctltool/Cargo.toml index 6ec407b..250381e 100644 --- a/ctltool/Cargo.toml +++ b/ctltool/Cargo.toml @@ -12,7 +12,7 @@ anyhow = "1.0" cab = "0.5" clap = { version = "4.0", features = ["derive"] } hex = "0.4" -reqwest = { version = "0.11", features = ["blocking"] } +reqwest = { version = "0.12", features = ["blocking"] } serde_json = "1.0" windows-ctl = { path = "../windows-ctl", version = "0.1.2", features = ["serde"]} indicatif = "0.17"