2023-04-06 16:02:29 +02:00
|
|
|
[package]
|
|
|
|
name = "tracing-ecs"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
[dependencies]
|
2023-04-13 10:53:41 +02:00
|
|
|
chrono = { version = "0", default-features = false, features = ["std", 'serde', 'clock'] }
|
|
|
|
serde = { version = "1", features = ['derive'] }
|
|
|
|
serde_json = "1"
|
|
|
|
tracing = "0"
|
|
|
|
tracing-core = { version = "0", default-features = false, features = ["std"] }
|
|
|
|
tracing-subscriber = { version = "0", features = ["env-filter", "serde_json"] }
|
2023-04-06 16:02:29 +02:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2023-04-13 10:53:41 +02:00
|
|
|
tracing-test = "0"
|