From f8a6cf49cd5a7a9436790c486b2879def138adc3 Mon Sep 17 00:00:00 2001 From: Paolo Barbolini Date: Sun, 3 Apr 2022 11:30:07 +0200 Subject: [PATCH] tracing: don't require default tracing features (#4592) --- tokio-util/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tokio-util/Cargo.toml b/tokio-util/Cargo.toml index 252f90a8d..b4557586a 100644 --- a/tokio-util/Cargo.toml +++ b/tokio-util/Cargo.toml @@ -43,7 +43,7 @@ futures-io = { version = "0.3.0", optional = true } futures-util = { version = "0.3.0", optional = true } pin-project-lite = "0.2.0" slab = { version = "0.4.4", optional = true } # Backs `DelayQueue` -tracing = { version = "0.1.25", optional = true } +tracing = { version = "0.1.25", default-features = false, features = ["std"], optional = true } [dev-dependencies] tokio = { version = "1.0.0", path = "../tokio", features = ["full"] }