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]
15zlog.workspace = true
16tracing.workspace = true
17
18tracing-subscriber = "0.3.22"
19tracing-tracy = { version = "0.11.4", optional = true, features = ["enable", "ondemand"] }
20
21ztracing_macro.workspace = true