[package]
edition = "2021"
name = "fast_log"
version = "1.7.8"
authors = ["ce <zhuxiujia@qq.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Rust async log High-performance asynchronous logging"
readme = "README.md"
keywords = [
"metrics",
"async",
"tracing",
]
license = "MIT"
repository = "https://github.com/rbatis/fast_log"
[features]
default = ["runtime_thread"]
gzip = ["flate2"]
lz4 = ["lz4_flex"]
runtime_thread = []
[lib]
name = "fast_log"
path = "src/lib.rs"
[[test]]
name = "filter_test"
path = "tests/filter_test.rs"
[[test]]
name = "split_test"
path = "tests/split_test.rs"
[[bench]]
name = "log"
path = "benches/log.rs"
[[bench]]
name = "log_file"
path = "benches/log_file.rs"
[dependencies.crossbeam]
version = "0.8"
[dependencies.crossbeam-channel]
version = "0.5"
[dependencies.crossbeam-utils]
version = "0.8"
[dependencies.dark-std]
version = "0.2"
[dependencies.fastdate]
version = "0.3"
[dependencies.flate2]
version = "1.1"
optional = true
[dependencies.log]
version = "0.4"
features = ["std"]
[dependencies.lz4_flex]
version = "0.13"
optional = true
[dependencies.parking_lot]
version = "0.12"
[dependencies.zip]
version = "8.5.0"
optional = true