From b79b7998240a803286dc0e68f394f5a5d1c7f13c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 28 Nov 2022 12:13:09 +0200 Subject: [PATCH] Upgrade `env_logger` crate to 0.10 version (#1130) Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- examples/actix_subscriptions/Cargo.toml | 2 +- examples/warp_async/Cargo.toml | 2 +- examples/warp_subscriptions/Cargo.toml | 2 +- juniper_actix/Cargo.toml | 2 +- juniper_warp/Cargo.toml | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/examples/actix_subscriptions/Cargo.toml b/examples/actix_subscriptions/Cargo.toml index 9c200447..e4cc2e34 100644 --- a/examples/actix_subscriptions/Cargo.toml +++ b/examples/actix_subscriptions/Cargo.toml @@ -10,7 +10,7 @@ publish = false actix-cors = "0.6" actix-web = "4.0" async-stream = "0.3" -env_logger = "0.9" +env_logger = "0.10" futures = "0.3" juniper = { path = "../../juniper", features = ["expose-test-schema"] } juniper_actix = { path = "../../juniper_actix", features = ["subscriptions"] } diff --git a/examples/warp_async/Cargo.toml b/examples/warp_async/Cargo.toml index 0f891304..85205e7e 100644 --- a/examples/warp_async/Cargo.toml +++ b/examples/warp_async/Cargo.toml @@ -7,7 +7,7 @@ authors = ["Christoph Herzog "] publish = false [dependencies] -env_logger = "0.9" +env_logger = "0.10" futures = "0.3" juniper = { path = "../../juniper" } juniper_warp = { path = "../../juniper_warp" } diff --git a/examples/warp_subscriptions/Cargo.toml b/examples/warp_subscriptions/Cargo.toml index 5cdc12d6..5c246ab4 100644 --- a/examples/warp_subscriptions/Cargo.toml +++ b/examples/warp_subscriptions/Cargo.toml @@ -7,7 +7,7 @@ publish = false [dependencies] async-stream = "0.3" -env_logger = "0.9" +env_logger = "0.10" futures = "0.3" juniper = { path = "../../juniper" } juniper_graphql_ws = { path = "../../juniper_graphql_ws" } diff --git a/juniper_actix/Cargo.toml b/juniper_actix/Cargo.toml index ccce57a9..f1d13276 100644 --- a/juniper_actix/Cargo.toml +++ b/juniper_actix/Cargo.toml @@ -52,7 +52,7 @@ actix-rt = "2.0" actix-test = "0.1" async-stream = "0.3" bytes = "1.0" -env_logger = "0.9" +env_logger = "0.10" juniper = { version = "0.16.0-dev", path = "../juniper", features = ["expose-test-schema"] } log = "0.4" tokio = "1.0" diff --git a/juniper_warp/Cargo.toml b/juniper_warp/Cargo.toml index 719ece8e..1ad73f0c 100644 --- a/juniper_warp/Cargo.toml +++ b/juniper_warp/Cargo.toml @@ -37,7 +37,7 @@ warp = { version = "0.3.2", default-features = false } headers = "0.3.8" [dev-dependencies] -env_logger = "0.9" +env_logger = "0.10" juniper = { version = "0.16.0-dev", path = "../juniper", features = ["expose-test-schema"] } log = "0.4" percent-encoding = "2.1"