From 5fc786e66ba9b7547ccedcf2dfb9017009b0c2b7 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 13 Dec 2021 06:51:16 +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.7) --- updated-dependencies: - dependency-name: reqwest dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 0675acc3b..b354be0eb 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -30,7 +30,7 @@ itertools = "0.10" log = { version = "0.4", optional = true } parking_lot = { version = ">=0.10,<0.12" } regex = { version = "1.3", optional = true } -reqwest = { version = "0.10", features = ["blocking"], optional = true } +reqwest = { version = "0.11", features = ["blocking"], optional = true } semver = ">=0.9, <0.12" serde = "1.0" serde_derive = "1.0" @@ -55,7 +55,7 @@ env_logger = "0.8" futures = "0.3" insta = "1.0" log = { version = "0.4", features = ["kv_unstable"] } -reqwest = { version = "0.10", features = ["blocking", "json"] } +reqwest = { version = "0.11", features = ["blocking", "json"] } uuid_dev = { version = "0.8", features = ["serde"], package = "uuid" } [features]