[package]
edition = "2024"
rust-version = "1.85.1"
name = "flogging"
version = "0.6.0"
authors = ["Bradley Willcott <bw.opensource@yahoo.com>"]
build = false
exclude = [
"/.vscode",
"licenseheader.txt",
"/docs",
"/guide",
"*.sh",
".gitignore",
"bacon.toml",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "This is a fast, flexible logging crate, loosely based on the Java logging package: java.util.logging."
documentation = "https://docs.rs/flogging"
readme = "README.md"
keywords = [
"log",
"logger",
"logging",
"tracing",
"debug",
]
categories = ["development-tools::debugging"]
license = "GPL-3.0-or-later"
repository = "https://github.com/bewillcott/flogging"
resolver = "2"
[badges.maintenance]
status = "actively-developed"
[lib]
name = "flogging"
path = "src/lib.rs"
[[test]]
name = "custom_formatter"
path = "tests/custom_formatter.rs"
[[test]]
name = "custom_handler"
path = "tests/custom_handler.rs"
[[test]]
name = "it_conversion"
path = "tests/it_conversion.rs"
[[test]]
name = "it_customs"
path = "tests/it_customs.rs"
[[test]]
name = "it_log_messages"
path = "tests/it_log_messages.rs"
[dependencies.anyhow]
version = "1.0.99"
[dependencies.chrono]
version = "0.4.41"
features = [
"std",
"alloc",
]
[dependencies.dyn-clone]
version = "1.0.20"
[dependencies.dyn-fmt]
version = "0.4.3"
[dependencies.flogging_macros]
version = "=0.6.0"
[dependencies.regex]
version = "1.11.2"
[dependencies.strfmt]
version = "0.2.5"
[dependencies.strum]
version = "0.27.2"
features = [
"std",
"derive",
"strum_macros",
]