feat: make tracing a crate feature and make it a default feature of the current crates

This commit is contained in:
J / Jacob Babich
2024-09-30 14:56:57 -04:00
parent 15c8a69cf3
commit 75952c947a
2 changed files with 8 additions and 3 deletions

View File

@@ -9,6 +9,10 @@ authors = { workspace = true }
license = { workspace = true }
repository = { workspace = true }
[features]
default = ["tracing"]
tracing = ["dep:tracing"]
[dependencies]
clap = { workspace = true, features = ["derive", "env"] }
tracing = { workspace = true }
tracing = { workspace = true, optional = true }