loglet 0.0.1

A lightweight zero-heap logging library
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 = "loglet"
version = "0.0.1"
authors = ["AltIsBacc"]
build = false
exclude = [".github/*"]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A lightweight zero-heap logging library"
readme = "README.md"
keywords = [
    "logging",
    "log",
    "no-alloc",
    "cli",
]
categories = ["development-tools::debugging"]
license = "MIT"
repository = "https://github.com/AltIsBacc/loglet"

[lib]
name = "loglet"
path = "src/lib.rs"

[[example]]
name = "basic_usage"
path = "examples/basic_usage.rs"

[[example]]
name = "custom_level"
path = "examples/custom_level.rs"

[dependencies.owo-colors]
version = "4.3.0"

[profile.release]
opt-level = 3
lto = true
codegen-units = 1
panic = "abort"
strip = true