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