[package]
edition = "2024"
rust-version = "1.87"
name = "nice-log"
version = "0.2.0"
authors = [
"Robbert van der Helm <mail@robbertvanderhelm.nl>",
"Billy Messenger <billydm@noreply.codeberg.org>",
]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "An opinionated yet flexible logger catering to the needs of the nice-plug plugin framework"
readme = "README.md"
keywords = [
"log",
"logging",
"nice-plug",
]
license = "ISC"
repository = "https://codeberg.org/BillyDM/nice-plug"
[lib]
name = "nice_log"
path = "src/lib.rs"
[[example]]
name = "basic"
path = "examples/basic.rs"
[[example]]
name = "filtered"
path = "examples/filtered.rs"
[dependencies.atty]
version = "0.2.14"
[dependencies.log]
version = "0.4.29"
[dependencies.once_cell]
version = "1.21"
[dependencies.termcolor]
version = "1.4"
[dependencies.time]
version = "0.3.47"
features = [
"formatting",
"local-offset",
"macros",
]
[target.'cfg(target_os = "windows")'.dependencies.windows]
version = "0.44"
features = [
"Win32_Foundation",
"Win32_System_Diagnostics_Debug",
]