Skip to content

Commit

Permalink
tracing: don't require default tracing features (#4592)
Browse files Browse the repository at this point in the history
  • Loading branch information
paolobarbolini committed Apr 3, 2022
1 parent 702d6dc commit f8a6cf4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tokio-util/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"] }
Expand Down

0 comments on commit f8a6cf4

Please sign in to comment.