Cargo.toml

 1[package]
 2name = "ztracing"
 3version = "0.1.0"
 4edition.workspace = true
 5publish.workspace = true
 6license = "GPL-3.0-or-later"
 7
 8[lints]
 9workspace = true
10
11[features]
12tracy = ["tracing-tracy"]
13
14[dependencies]
15tracing.workspace = true
16
17tracing-subscriber = "0.3.22"
18tracing-tracy = { version = "0.11.4", optional = true, features = ["enable", "ondemand"] }
19
20ztracing_macro.workspace = true