AppFlowy/frontend/rust-lib/lib-log/Cargo.toml

22 lines
500 B
TOML
Raw Normal View History

2021-06-29 05:45:32 +00:00
[package]
2021-11-19 07:04:56 +00:00
name = "lib-log"
2021-06-29 05:45:32 +00: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 06:08:24 +00:00
tracing-subscriber = { version = "0.3.17", features = ["registry", "env-filter", "ansi", "json"] }
tracing-bunyan-formatter = "0.3.9"
tracing-appender = "0.2.3"
2021-09-13 05:05:46 +00:00
tracing-core = "0.1"
tracing.workspace = true
serde_json.workspace = true
serde.workspace = true
2021-09-13 05:05:46 +00:00
chrono = "0.4"
2021-11-03 07:28:34 +00:00
lazy_static = "1.4.0"
2021-07-03 13:40:13 +00:00
[features]
2023-03-03 12:38:31 +00:00
use_bunyan = []