[package]
edition = "2024"
name = "lean-log"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A tiny, zero-overhead logging framework"
readme = "README.md"
keywords = [
"logging",
"log",
"structured",
"zero-overhead",
"tracing",
]
categories = ["development-tools::debugging"]
license = "MIT"
repository = "https://github.com/piot/lean-log"
[features]
default = ["max_debug"]
disabled = []
max_debug = ["max_info"]
max_error = []
max_info = ["max_notice"]
max_notice = ["max_warn"]
max_trace = ["max_debug"]
max_warn = ["max_error"]
[lib]
name = "lean_log"
path = "src/lib.rs"
[[example]]
name = "structured"
path = "examples/structured.rs"
required-features = ["max_trace"]