From c90cc8edc1ba09cc51478bdf698669c046f4aa5a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 14 Jan 2023 23:04:59 +0000 Subject: [PATCH] chore: 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.13) --- 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 960390241..0814c8fef 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -28,7 +28,7 @@ http = { version = "0.2", optional = true } itertools = "0.10" log = { version = "0.4", optional = true } regex = { version = "1.3", optional = true } -reqwest = { version = "0.10", features = ["blocking"], optional = true } +reqwest = { version = "0.11", features = ["blocking"], optional = true } semver = "1.0.9" serde = "1.0" serde_derive = "1.0" @@ -56,7 +56,7 @@ chrono_dev = { version = "0.4", features = ["serde"], package = "chrono" } futures = "0.3" uuid0_dev = { version = "0", features = ["serde"], package = "uuid" } uuid1_dev = { version = "1", features = ["serde"], package = "uuid" } -reqwest = { version = "0.10", features = ["blocking", "json"] } +reqwest = { version = "0.11", features = ["blocking", "json"] } log = { version = "0.4", features = ["kv_unstable"] } insta = "1.0" env_logger = "0.8"