lean-log 0.1.0

A tiny, zero-overhead logging framework
Documentation
[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]
# Compile-time cap. If a level is not enabled here, calls at that level compile to nothing.
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"]