lean-log 0.1.0

A tiny, zero-overhead logging framework
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[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"]