[package]
edition = "2024"
name = "bt_logger"
version = "0.3.3"
authors = ["calvarez <calvarez@bachuetech.biz>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A simple and lightweight Rust log library with support for log level. Can Generate Log meessage only. Log to a file. Fail silently with warn msg."
homepage = "https://github.com/bachuetech/bt_logger"
readme = "README.md"
keywords = [
"log",
"logger",
"logging",
]
categories = ["development-tools::debugging"]
license = "GPL-3.0-only"
repository = "https://github.com/bachuetech/bt_logger.git"
[lib]
name = "bt_logger"
path = "src/lib.rs"
[[example]]
name = "both"
path = "examples/both.rs"
[[example]]
name = "none_level"
path = "examples/none_level.rs"
[[example]]
name = "params"
path = "examples/params.rs"
[[test]]
name = "test"
path = "tests/test.rs"
[[test]]
name = "test_none"
path = "tests/test_none.rs"
[[test]]
name = "test_verb"
path = "tests/test_verb.rs"
[dependencies.chrono]
version = "0.4.44"
[dependencies.once_cell]
version = "1.21.3"
[dependencies.tokio]
version = "1.50.0"
features = [
"rt-multi-thread",
"macros",
]
[dev-dependencies.regex]
version = "1.12.3"