From 42e72955ebd94856bcb91d9a1c17bbff517ae29f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 25 Nov 2022 13:08:43 +0000 Subject: [PATCH] build(deps): Update env_logger requirement from 0.9.0 to 0.10.0 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/commits/v0.10.0) --- updated-dependencies: - dependency-name: env_logger dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- Cargo.toml | 2 +- misc/metrics/Cargo.toml | 2 +- misc/multistream-select/Cargo.toml | 2 +- muxers/mplex/Cargo.toml | 2 +- protocols/gossipsub/Cargo.toml | 2 +- protocols/identify/Cargo.toml | 2 +- protocols/relay/Cargo.toml | 2 +- transports/dns/Cargo.toml | 2 +- transports/noise/Cargo.toml | 2 +- transports/plaintext/Cargo.toml | 2 +- transports/tcp/Cargo.toml | 2 +- 11 files changed, 11 insertions(+), 11 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index f53f0283846..cd117d0d7da 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -100,7 +100,7 @@ libp2p-websocket = { version = "0.31.0", path = "transports/websocket", optional [dev-dependencies] async-std = { version = "1.6.2", features = ["attributes"] } async-trait = "0.1" -env_logger = "0.9.0" +env_logger = "0.10.0" structopt = "0.3.21" tokio = { version = "1.0.1", features = ["io-util", "io-std", "macros", "rt", "rt-multi-thread"] } diff --git a/misc/metrics/Cargo.toml b/misc/metrics/Cargo.toml index f34c33d9d94..277b00c6d12 100644 --- a/misc/metrics/Cargo.toml +++ b/misc/metrics/Cargo.toml @@ -23,7 +23,7 @@ libp2p-swarm = { version = "0.31.0", path = "../../swarm" } open-metrics-client = "0.12.0" [dev-dependencies] -env_logger = "0.8.1" +env_logger = "0.10.0" futures = "0.3.1" libp2p = { path = "../../", features = ["metrics"] } tide = "0.16" diff --git a/misc/multistream-select/Cargo.toml b/misc/multistream-select/Cargo.toml index 2f6a72db9ef..52dddb11e20 100644 --- a/misc/multistream-select/Cargo.toml +++ b/misc/multistream-select/Cargo.toml @@ -19,7 +19,7 @@ unsigned-varint = "0.7" [dev-dependencies] async-std = "1.6.2" -env_logger = "0.9" +env_logger = "0.10" libp2p-core = { path = "../../core", default-features = false } libp2p-mplex = { path = "../../muxers/mplex" } libp2p-plaintext = { path = "../../transports/plaintext" } diff --git a/muxers/mplex/Cargo.toml b/muxers/mplex/Cargo.toml index 285fe386517..a1a67ff3c2e 100644 --- a/muxers/mplex/Cargo.toml +++ b/muxers/mplex/Cargo.toml @@ -24,7 +24,7 @@ unsigned-varint = { version = "0.7", features = ["asynchronous_codec"] } [dev-dependencies] async-std = "1.7.0" criterion = "0.3" -env_logger = "0.9" +env_logger = "0.10" futures = "0.3" libp2p-tcp = { path = "../../transports/tcp" } libp2p-plaintext = { path = "../../transports/plaintext" } diff --git a/protocols/gossipsub/Cargo.toml b/protocols/gossipsub/Cargo.toml index 115051a5ef4..955e26d7766 100644 --- a/protocols/gossipsub/Cargo.toml +++ b/protocols/gossipsub/Cargo.toml @@ -30,7 +30,7 @@ regex = "1.4.0" [dev-dependencies] async-std = "1.6.3" -env_logger = "0.9.0" +env_logger = "0.10.0" libp2p-plaintext = { path = "../../transports/plaintext" } libp2p-yamux = { path = "../../muxers/yamux" } libp2p-mplex = { path = "../../muxers/mplex" } diff --git a/protocols/identify/Cargo.toml b/protocols/identify/Cargo.toml index 6f6c37d12e2..3985c00353d 100644 --- a/protocols/identify/Cargo.toml +++ b/protocols/identify/Cargo.toml @@ -20,7 +20,7 @@ wasm-timer = "0.2" [dev-dependencies] async-std = "1.6.2" -env_logger = "0.9" +env_logger = "0.10" libp2p-mplex = { path = "../../muxers/mplex" } libp2p-noise = { path = "../../transports/noise" } libp2p-tcp = { path = "../../transports/tcp" } diff --git a/protocols/relay/Cargo.toml b/protocols/relay/Cargo.toml index aedfe262f0b..ca825348d31 100644 --- a/protocols/relay/Cargo.toml +++ b/protocols/relay/Cargo.toml @@ -29,7 +29,7 @@ wasm-timer = "0.2" prost-build = "0.8" [dev-dependencies] -env_logger = "0.9.0" +env_logger = "0.10.0" structopt = "0.3.21" libp2p = { path = "../.." } libp2p-kad = { path = "../kad" } diff --git a/transports/dns/Cargo.toml b/transports/dns/Cargo.toml index 51c9a8fadd1..22cda604d46 100644 --- a/transports/dns/Cargo.toml +++ b/transports/dns/Cargo.toml @@ -18,7 +18,7 @@ async-std-resolver = { version = "0.20", optional = true } smallvec = "1.6.1" [dev-dependencies] -env_logger = "0.9" +env_logger = "0.10" tokio-crate = { package = "tokio", version = "1.0", default-features = false, features = ["rt", "time"] } async-std-crate = { package = "async-std", version = "1.6" } diff --git a/transports/noise/Cargo.toml b/transports/noise/Cargo.toml index 201d7293aa4..d1d143289c7 100644 --- a/transports/noise/Cargo.toml +++ b/transports/noise/Cargo.toml @@ -29,7 +29,7 @@ snow = { version = "0.8.0", features = ["default-resolver"], default-features = [dev-dependencies] async-io = "1.2.0" -env_logger = "0.9.0" +env_logger = "0.10.0" libp2p-tcp = { path = "../../transports/tcp" } quickcheck = "0.9.0" sodiumoxide = "0.2.5" diff --git a/transports/plaintext/Cargo.toml b/transports/plaintext/Cargo.toml index e0f7d6778da..be7cd279e60 100644 --- a/transports/plaintext/Cargo.toml +++ b/transports/plaintext/Cargo.toml @@ -20,7 +20,7 @@ unsigned-varint = { version = "0.7", features = ["asynchronous_codec"] } void = "1.0.2" [dev-dependencies] -env_logger = "0.9.0" +env_logger = "0.10.0" quickcheck = "0.9.0" rand = "0.7" diff --git a/transports/tcp/Cargo.toml b/transports/tcp/Cargo.toml index 7e56026a628..5a374ecf4d4 100644 --- a/transports/tcp/Cargo.toml +++ b/transports/tcp/Cargo.toml @@ -30,4 +30,4 @@ async-io = ["async-io-crate", "if-watch"] [dev-dependencies] async-std = { version = "1.6.5", features = ["attributes"] } tokio-crate = { package = "tokio", version = "1.0.1", default-features = false, features = ["net", "rt"] } -env_logger = "0.9.0" +env_logger = "0.10.0"