From 99afa83ee04de8472cf2131dff2591305806aac6 Mon Sep 17 00:00:00 2001 From: John Vandenberg Date: Mon, 6 Feb 2023 15:29:38 +0800 Subject: [PATCH] Bump env-logger --- Cargo.toml | 2 +- tests/h2-fuzz/Cargo.toml | 30 +++++++++++++++--------------- 2 files changed, 16 insertions(+), 16 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 8e904875e..87732dfe4 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -66,7 +66,7 @@ serde_json = "1.0.0" # Examples tokio = { version = "1", features = ["rt-multi-thread", "macros", "sync", "net"] } -env_logger = { version = "0.9", default-features = false } +env_logger = { version = "0.10", default-features = false } tokio-rustls = "0.23.2" webpki-roots = "0.22.2" diff --git a/tests/h2-fuzz/Cargo.toml b/tests/h2-fuzz/Cargo.toml index dadb62c92..4ad9f39f3 100644 --- a/tests/h2-fuzz/Cargo.toml +++ b/tests/h2-fuzz/Cargo.toml @@ -1,15 +1,15 @@ -[package] -name = "h2-fuzz" -version = "0.0.0" -publish = false -license = "MIT" -edition = "2018" - -[dependencies] -h2 = { path = "../.." } - -env_logger = { version = "0.9", default-features = false } -futures = { version = "0.3", default-features = false, features = ["std"] } -honggfuzz = "0.5" -http = "0.2" -tokio = { version = "1", features = [ "full" ] } +[package] +name = "h2-fuzz" +version = "0.0.0" +publish = false +license = "MIT" +edition = "2018" + +[dependencies] +h2 = { path = "../.." } + +env_logger = { version = "0.10", default-features = false } +futures = { version = "0.3", default-features = false, features = ["std"] } +honggfuzz = "0.5" +http = "0.2" +tokio = { version = "1", features = [ "full" ] }