AppFlowy/frontend/rust-lib/lib-log/Cargo.toml
Nathan.fooo e08a1a6974
feat: enable dispatch event using single thread (#3828)
* refactor: lib dispatch

* chore: type def

* chore: type def

* fix: local set spawn

* chore: replace tokio spawn

* chore: update log

* chore: boxed event

* chore: tauri lock
2023-10-30 12:35:06 +08:00

24 lines
555 B
TOML

[package]
name = "lib-log"
version = "0.1.0"
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
tracing-log = { version = "0.2"}
tracing-subscriber = { version = "0.3.17", features = ["registry", "env-filter", "ansi", "json"] }
tracing-bunyan-formatter = "0.3.9"
tracing-appender = "0.2.2"
tracing-core = "0.1"
tracing = { version = "0.1", features = ["log"] }
log = "0.4.17"
serde_json = "1.0"
serde = "1.0"
chrono = "0.4"
lazy_static = "1.4.0"
[features]
use_bunyan = []