[package] name = "loggix" version = "1.0.2" edition = "2021" description = "A powerful, structured logging library for Rust inspired by Logrus. Features thread-safe logging, structured fields, custom formatters, and beautiful terminal output." authors = ["Christos Ploutarchou "] license = "MIT" repository = "https://github.com/cploutarchou/loggix" documentation = "https://docs.rs/loggix" readme = "README.md" keywords = ["logging", "structured", "log", "json", "logrus"] categories = ["development-tools::debugging", "development-tools::profiling"] [dependencies] chrono = { version = "0.4", features = ["serde"] } colored = "2.0" serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" lazy_static = "1.4.0" [dev-dependencies] criterion = "0.5" [[bench]] name = "logging" harness = false