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

18 lines
470 B
TOML
Raw Normal View History

2021-06-29 05:45:32 +00:00
[package]
name = "flowy-log"
version = "0.1.0"
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
2021-07-03 13:40:13 +00:00
tracing = { version = "0.1" }
2021-07-03 06:14:10 +00:00
tracing-log = { version = "0.1.1"}
2021-06-29 05:45:32 +00:00
tracing-futures = "0.2.4"
2021-07-03 13:40:13 +00:00
tracing-subscriber = { version = "0.2.12", features = ["registry", "env-filter", "ansi", "json"] }
2021-06-29 05:45:32 +00:00
tracing-bunyan-formatter = "0.2.2"
2021-07-02 12:47:52 +00:00
tracing-appender = "0.1"
2021-07-03 13:40:13 +00:00
log = "0.4.14"
[features]
use_bunyan = []