From d48edaca5c3e6d1a6939b98de126ab0af3b1afab Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 25 Nov 2022 07:04:14 +0000 Subject: [PATCH] Update env_logger requirement from 0.8 to 0.10 Updates the requirements on [env_logger](https://github.com/rust-cli/env_logger) to permit the latest version. - [Release notes](https://github.com/rust-cli/env_logger/releases) - [Changelog](https://github.com/rust-cli/env_logger/blob/main/CHANGELOG.md) - [Commits](https://github.com/rust-cli/env_logger/compare/v0.8.0...v0.10.0) --- updated-dependencies: - dependency-name: env_logger dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- examples/Cargo.toml | 2 +- http-server/Cargo.toml | 2 +- tests/Cargo.toml | 2 +- ws-client/Cargo.toml | 2 +- ws-server/Cargo.toml | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/examples/Cargo.toml b/examples/Cargo.toml index 251259e9ee..bded88bd59 100644 --- a/examples/Cargo.toml +++ b/examples/Cargo.toml @@ -8,7 +8,7 @@ publish = false [dev-dependencies] anyhow = "1" -env_logger = "0.8" +env_logger = "0.10" jsonrpsee = { path = "../jsonrpsee", features = ["full"] } log = "0.4" tokio = { version = "1", features = ["full"] } diff --git a/http-server/Cargo.toml b/http-server/Cargo.toml index 0645af3223..bfe83237ce 100644 --- a/http-server/Cargo.toml +++ b/http-server/Cargo.toml @@ -26,6 +26,6 @@ tokio = { version = "1", features = ["rt-multi-thread", "macros"] } unicase = "2.6.0" [dev-dependencies] -env_logger = "0.8" +env_logger = "0.10" jsonrpsee-test-utils = { path = "../test-utils" } jsonrpsee-http-client = { path = "../http-client" } diff --git a/tests/Cargo.toml b/tests/Cargo.toml index 02e87c9c20..24f9547e83 100644 --- a/tests/Cargo.toml +++ b/tests/Cargo.toml @@ -8,7 +8,7 @@ license = "MIT" publish = false [dev-dependencies] -env_logger = "0.8" +env_logger = "0.10" futures-channel = { version = "0.3", default-features = false } jsonrpsee = { path = "../jsonrpsee", features = ["full"] } tokio = { version = "1", features = ["full"] } diff --git a/ws-client/Cargo.toml b/ws-client/Cargo.toml index ef9ea25c15..67a06c81ca 100644 --- a/ws-client/Cargo.toml +++ b/ws-client/Cargo.toml @@ -28,6 +28,6 @@ rustls = "0.19.1" rustls-native-certs = "0.5.0" [dev-dependencies] -env_logger = "0.8" +env_logger = "0.10" jsonrpsee-test-utils = { path = "../test-utils" } tokio = { version = "1", features = ["full"] } diff --git a/ws-server/Cargo.toml b/ws-server/Cargo.toml index e48acd8e38..3e5d7c54d8 100644 --- a/ws-server/Cargo.toml +++ b/ws-server/Cargo.toml @@ -25,6 +25,6 @@ tokio-stream = { version = "0.1.1", features = ["net"] } tokio-util = { version = "0.6", features = ["compat"] } [dev-dependencies] -env_logger = "0.8" +env_logger = "0.10" jsonrpsee-test-utils = { path = "../test-utils" } jsonrpsee-ws-client = { path = "../ws-client" }