Skip to content

Commit c5f5b80

Browse files
build(deps): Update env_logger requirement from 0.9.0 to 0.10.0 (#3166)
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](rust-cli/env_logger@v0.9.0...v0.10.0) --- updated-dependencies: - dependency-name: env_logger dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 82a9e2c commit c5f5b80

File tree

20 files changed

+20
-20
lines changed

20 files changed

+20
-20
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ libp2p-gossipsub = { version = "0.43.0", path = "protocols/gossipsub", optional
132132
[dev-dependencies]
133133
async-std = { version = "1.6.2", features = ["attributes"] }
134134
async-trait = "0.1"
135-
env_logger = "0.9.0"
135+
env_logger = "0.10.0"
136136
clap = { version = "4.0.13", features = ["derive"] }
137137
tokio = { version = "1.15", features = ["io-util", "io-std", "macros", "rt", "rt-multi-thread"] }
138138

misc/metrics/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ libp2p-gossipsub = { version = "0.43.0", path = "../../protocols/gossipsub", op
3333

3434
[dev-dependencies]
3535
log = "0.4.0"
36-
env_logger = "0.9.0"
36+
env_logger = "0.10.0"
3737
futures = "0.3.1"
3838
libp2p = { path = "../..", features = ["full"] }
3939
hyper = { version="0.14", features = ["server", "tcp", "http1"] }

misc/multistream-select/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ unsigned-varint = "0.7"
2020

2121
[dev-dependencies]
2222
async-std = "1.6.2"
23-
env_logger = "0.9"
23+
env_logger = "0.10"
2424
libp2p = { path = "../..", features = ["full"] }
2525
quickcheck = { package = "quickcheck-ext", path = "../../misc/quickcheck-ext" }
2626
rand = "0.8"

muxers/mplex/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ unsigned-varint = { version = "0.7", features = ["asynchronous_codec"] }
2525
[dev-dependencies]
2626
async-std = { version = "1.7.0", features = ["attributes"] }
2727
criterion = "0.4"
28-
env_logger = "0.9"
28+
env_logger = "0.10"
2929
futures = "0.3"
3030
libp2p = { path = "../..", features = ["full"] }
3131
libp2p-muxer-test-harness = { path = "../test-harness" }

protocols/autonat/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ prost = "0.11"
2727

2828
[dev-dependencies]
2929
async-std = { version = "1.10", features = ["attributes"] }
30-
env_logger = "0.9"
30+
env_logger = "0.10"
3131
clap = { version = "4.0.13", features = ["derive"] }
3232
libp2p = { path = "../..", features = ["full"] }
3333

protocols/dcutr/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ void = "1"
2929
prost-build = "0.11"
3030

3131
[dev-dependencies]
32-
env_logger = "0.9.0"
32+
env_logger = "0.10.0"
3333
libp2p = { path = "../..", features = ["full"] }
3434
rand = "0.8"
3535
clap = { version = "4.0.13", features = ["derive"] }

protocols/gossipsub/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ prometheus-client = "0.18.0"
3737

3838
[dev-dependencies]
3939
async-std = "1.6.3"
40-
env_logger = "0.9.0"
40+
env_logger = "0.10.0"
4141
libp2p = { path = "../..", features = ["full"] }
4242
quickcheck = { package = "quickcheck-ext", path = "../../misc/quickcheck-ext" }
4343
hex = "0.4.2"

protocols/identify/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ void = "1.0"
2626

2727
[dev-dependencies]
2828
async-std = { version = "1.6.2", features = ["attributes"] }
29-
env_logger = "0.9"
29+
env_logger = "0.10"
3030
libp2p = { path = "../..", features = ["full"] }
3131

3232
[build-dependencies]

protocols/kad/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ serde = { version = "1.0", optional = true, features = ["derive"] }
3333
thiserror = "1"
3434

3535
[dev-dependencies]
36-
env_logger = "0.9.0"
36+
env_logger = "0.10.0"
3737
futures-timer = "3.0"
3838
libp2p = { path = "../..", features = ["full"] }
3939
quickcheck = { package = "quickcheck-ext", path = "../../misc/quickcheck-ext" }

protocols/mdns/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ async-io = ["dep:async-io", "if-watch/smol"]
3131

3232
[dev-dependencies]
3333
async-std = { version = "1.9.0", features = ["attributes"] }
34-
env_logger = "0.9.0"
34+
env_logger = "0.10.0"
3535
libp2p = { path = "../..", features = ["full"] }
3636
tokio = { version = "1.19", default-features = false, features = ["macros", "rt", "rt-multi-thread", "time"] }
3737

0 commit comments

Comments
 (0)