traced_error 0.1.1

Typed errors with automatic trace frames and structured context for Rust error propagation
Documentation
[workspace]
members = ["traced_macro"]

[package]
name = "traced_error"
version = "0.1.1"
edition = "2024"
authors = ["lihaohan"]
description = "Typed errors with automatic trace frames and structured context for Rust error propagation"
license = "MIT OR Apache-2.0"
repository = "https://github.com/lihaohan/traced_error"
homepage = "https://github.com/lihaohan/traced_error"
documentation = "https://docs.rs/traced_error"
readme = "README.md"
keywords = ["error", "context", "trace", "typed", "macro"]
categories = ["rust-patterns", "development-tools::debugging"]
exclude = [
    "target/",
    ".git/",
    ".github/",
    ".idea/",
    ".vscode/",
    "Cargo.lock",
    "*.log",
]

[dependencies]
smallvec = "1"
thiserror = "1"
traced_macro = { path = "traced_macro", version = "0.1.0" }

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