From 72bade1799aeb2658ccf252e291c0a19e9eb0543 Mon Sep 17 00:00:00 2001 From: Roman Date: Wed, 14 Sep 2022 07:01:41 +0400 Subject: [PATCH] build(deps): Update env_logger to 0.9 and criterion to 0.4 (#2896) --- core/Cargo.toml | 2 +- misc/metrics/Cargo.toml | 2 +- muxers/mplex/Cargo.toml | 2 +- protocols/dcutr/Cargo.toml | 2 +- protocols/rendezvous/Cargo.toml | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/core/Cargo.toml b/core/Cargo.toml index 3e5285ef..0970b3e7 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -45,7 +45,7 @@ ring = { version = "0.16.9", features = ["alloc", "std"], default-features = fal [dev-dependencies] async-std = { version = "1.6.2", features = ["attributes"] } base64 = "0.13.0" -criterion = "0.3" +criterion = "0.4" libp2p-mplex = { path = "../muxers/mplex" } libp2p-noise = { path = "../transports/noise" } libp2p-tcp = { path = "../transports/tcp" } diff --git a/misc/metrics/Cargo.toml b/misc/metrics/Cargo.toml index 30df8692..1da1fb58 100644 --- a/misc/metrics/Cargo.toml +++ b/misc/metrics/Cargo.toml @@ -33,7 +33,7 @@ libp2p-gossipsub = { version = "0.41.0", path = "../../protocols/gossipsub", op [dev-dependencies] log = "0.4.0" -env_logger = "0.8.1" +env_logger = "0.9.0" futures = "0.3.1" libp2p = { path = "../../", default-features = false, features = ["metrics", "ping", "tcp-async-io", "dns-async-std", "websocket", "noise", "mplex", "yamux"] } hyper = { version="0.14", features = ["server", "tcp", "http1"] } diff --git a/muxers/mplex/Cargo.toml b/muxers/mplex/Cargo.toml index 1e4f6974..d4ea5342 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" +criterion = "0.4" env_logger = "0.9" futures = "0.3" libp2p-tcp = { path = "../../transports/tcp" } diff --git a/protocols/dcutr/Cargo.toml b/protocols/dcutr/Cargo.toml index bc015ab0..dd059e41 100644 --- a/protocols/dcutr/Cargo.toml +++ b/protocols/dcutr/Cargo.toml @@ -29,7 +29,7 @@ void = "1" prost-build = "0.11" [dev-dependencies] -env_logger = "0.8.3" +env_logger = "0.9.0" libp2p = { path = "../..", default-features = false, features = ["dcutr", "relay", "plaintext", "identify", "tcp-async-io", "ping", "noise", "dns-async-std"] } libp2p-identify = { path = "../identify" } libp2p-plaintext = { path = "../../transports/plaintext" } diff --git a/protocols/rendezvous/Cargo.toml b/protocols/rendezvous/Cargo.toml index fadcaf59..3eee5c83 100644 --- a/protocols/rendezvous/Cargo.toml +++ b/protocols/rendezvous/Cargo.toml @@ -28,7 +28,7 @@ instant = "0.1.11" [dev-dependencies] async-trait = "0.1" -env_logger = "0.8" +env_logger = "0.9.0" libp2p = { path = "../..", default-features = false, features = ["ping", "identify", "tcp-async-io", "dns-async-std", "websocket", "noise", "mplex", "yamux", "rendezvous"] } rand = "0.8" tokio = { version = "1.15", features = [ "rt-multi-thread", "time", "macros", "sync", "process", "fs", "net" ] }