Files
zed/crates/ztracing/Cargo.toml
David Kleingeld d72746773f Put tracy dependency behind feature tracy (#44277)
It broke CI, now it no longer does 🎉 Proper fix followes after the
weekend.

Release Notes:

- N/A
2025-12-06 14:08:01 +02:00

21 lines
385 B
TOML

[package]
name = "ztracing"
version = "0.1.0"
edition.workspace = true
publish.workspace = true
license = "GPL-3.0-or-later"
[lints]
workspace = true
[features]
tracy = ["tracing-tracy"]
[dependencies]
tracing.workspace = true
tracing-subscriber = "0.3.22"
tracing-tracy = { version = "0.11.4", optional = true, features = ["enable", "ondemand"] }
ztracing_macro.workspace = true