24 lines
580 B
TOML
Raw Normal View History

2021-06-29 13:45:32 +08:00
[package]
2021-11-19 15:04:56 +08:00
name = "lib-log"
2021-06-29 13:45:32 +08:00
version = "0.1.0"
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
2021-08-19 14:08:24 +08:00
2021-07-03 14:14:10 +08:00
tracing-log = { version = "0.1.1"}
2021-06-29 13:45:32 +08:00
tracing-futures = "0.2.4"
2021-07-03 21:40:13 +08:00
tracing-subscriber = { version = "0.2.12", features = ["registry", "env-filter", "ansi", "json"] }
2021-06-29 13:45:32 +08:00
tracing-bunyan-formatter = "0.2.2"
2021-07-02 20:47:52 +08:00
tracing-appender = "0.1"
2021-09-13 13:05:46 +08:00
tracing-core = "0.1"
2021-08-19 14:08:24 +08:00
tracing = { version = "0.1", features = ["log"] }
2021-07-03 21:40:13 +08:00
log = "0.4.14"
2021-09-13 13:05:46 +08:00
serde_json = "1.0"
serde = "1.0"
chrono = "0.4"
2021-11-03 15:28:34 +08:00
lazy_static = "1.4.0"
2021-07-03 21:40:13 +08:00
[features]
use_bunyan = []