1
0
Fork 0
mirror of https://codeberg.org/demostf/parser.git synced 2026-06-03 10:14:06 +02:00

make tracing optional

This commit is contained in:
Robin Appelman 2022-05-07 16:31:38 +02:00
commit 10e0d69d93
6 changed files with 52 additions and 88 deletions

View file

@ -43,11 +43,12 @@ no-panic = { version = "0.1", optional = true }
fnv = "1"
steamid-ng = "1"
schemars = { version = "0.8", optional = true }
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
tracing = { version = "0.1", optional = true }
tracing-subscriber = { version = "0.3", features = ["env-filter"], optional = true }
[features]
schema = ["schemars", "bitbuffer/schemars"]
trace = ["tracing", "tracing-subscriber"]
[dev-dependencies]
pretty_assertions = "1"