[package]
name = "tiny_bail"
version = "0.7.0"
authors = ["Ben Frankel"]
edition = "2024"
description = "Small but flexible macros for bailing on failure."
repository = "https://github.com/benfrankel/tiny_bail"
license = "MIT OR Apache-2.0"
keywords = ["failure", "error", "macro", "log", "tracing"]
categories = [
"development-tools::debugging",
"rust-patterns",
"no-std::no-alloc",
]
[lints.rust]
missing_docs = "deny"
[features]
default = ["tracing", "warn"]
trace = []
debug = []
info = []
warn = []
error = []
[dependencies]
log = { version = "0.4", optional = true }
tracing = { version = "0.1", features = ["log"], optional = true }