From 4f3939075a9e6c0da8fa138591e657153f27764c Mon Sep 17 00:00:00 2001 From: "dependabot-preview[bot]" <27856297+dependabot-preview[bot]@users.noreply.github.com> Date: Tue, 5 Jan 2021 22:44:11 -1000 Subject: [PATCH] Update reqwest requirement from 0.10 to 0.11 (#842) 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.0) Signed-off-by: dependabot-preview[bot] Co-authored-by: dependabot-preview[bot] <27856297+dependabot-preview[bot]@users.noreply.github.com> --- examples/warp_async/Cargo.toml | 2 +- juniper_hyper/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/warp_async/Cargo.toml b/examples/warp_async/Cargo.toml index bd7c5a60..31f96c3b 100644 --- a/examples/warp_async/Cargo.toml +++ b/examples/warp_async/Cargo.toml @@ -12,6 +12,6 @@ juniper_warp = { git = "https://github.com/graphql-rust/juniper" } env_logger = "0.8.1" futures = "0.3.1" log = "0.4.8" -reqwest = { version = "0.10", features = ["rustls-tls"] } +reqwest = { version = "0.11", features = ["rustls-tls"] } tokio = { version = "0.2", features = ["rt-core", "macros"] } warp = "0.2" diff --git a/juniper_hyper/Cargo.toml b/juniper_hyper/Cargo.toml index 46839527..3218602d 100644 --- a/juniper_hyper/Cargo.toml +++ b/juniper_hyper/Cargo.toml @@ -19,5 +19,5 @@ url = "2" [dev-dependencies] juniper = { version = "0.15.1", path = "../juniper", features = ["expose-test-schema"] } pretty_env_logger = "0.4" -reqwest = { version = "0.10", features = ["blocking", "rustls-tls"] } +reqwest = { version = "0.11", features = ["blocking", "rustls-tls"] } tokio = { version = "0.2", features = ["macros"] }