[package]
edition = "2024"
name = "trace-err"
version = "1.0.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A small extension to the tracing crate, which provides a single method 'trace_expect()' for Result<T, E> and Option<T>"
readme = "README.md"
keywords = [
"tracing",
"logging",
"no-std",
"embedded",
]
categories = [
"development-tools::profiling",
"no-std",
]
license = "Unlicense"
repository = "https://github.com/ricktaylor/trace-err"
[lib]
name = "trace_err"
crate-type = ["rlib"]
path = "src/lib.rs"
[dependencies.tracing]
version = "0.1"
default-features = false
[dev-dependencies.tracing-subscriber]
version = "0.3"