16 lines
451 B
TOML
16 lines
451 B
TOML
[package]
|
|
name = "tracing-ecs"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
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"] }
|
|
|
|
[dev-dependencies]
|
|
tracing-test = "0"
|