From 33b6ff30de5bc8f274bc55b43d8282626dff60c1 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 31 Oct 2022 08:24:53 +0000 Subject: [PATCH] Update reqwest requirement from 0.10 to 0.11 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.10.0...v0.11.12) --- updated-dependencies: - dependency-name: reqwest dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 17c4ad3..4846e7c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -11,7 +11,7 @@ edition = "2018" clap = "3.1.12" [dependencies] -reqwest = { version = "0.10", features = ["blocking", "json"] } +reqwest = { version = "0.11", features = ["blocking", "json"] } tokio = { version = "1.17", features = ["full"] } serde = { version = "1.0.55", features = ["derive"] } openssl = { version = "0.10", features = ["vendored"] }