tklog 0.0.4

Lightweight and efficient rust structured log library with support for log level, file shred, compressed archive
Documentation
[package]
name = "tklog"
version = "0.0.4"
edition = "2021"
authors = ["donnie4w <donnie4w@gmail.com>"]
description = "Lightweight and efficient rust structured log library with support for log level, file shred, compressed archive"
homepage = "https://github.com/donnie4w/tklog"
documentation = "https://docs.rs/tklog" 
readme = "README.md"
keywords = ["log",  "logger","logging"]
categories = ["logging"] 
license = "Apache-2.0"
repository = "https://github.com/donnie4w/tklog"

include = [
    "src/**/*.rs",
    "Cargo.toml",
    "README.md",
    "LICENSE",
]

[dependencies]
tokio = { version = "1.37.0", features = ["full"] }
chrono = "0.4.38"
once_cell = "1.19.0"
flate2 = "1.0"
crossbeam-channel = "0.5.13"
regex = "1.10.4"
log = "0.4.21"
# criterion = "0.5.1"

# [dev-dependencies]  
# criterion = "0.5.1"

# [[bench]]
# name = "log_bench"
# harness = false

# [[bin]]
# name = "tklog"
# path = "benches/log_bench.rs"

# [profile.bench]
# opt-level = 3 
# debug = true