[package]
edition = "2021"
rust-version = "1.77"
name = "error-path-macros"
version = "0.1.0"
authors = ["용사장 <akira76@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Attribute macros for automatically attaching error paths to Result-returning Rust functions and impl blocks."
homepage = "https://github.com/yongaru/error-path-kit"
documentation = "https://docs.rs/error-path-macros"
readme = "README.md"
keywords = [
"error",
"context",
"path",
"macro",
"tracing",
]
categories = [
"rust-patterns",
"development-tools::debugging",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/yongaru/error-path-kit"
[lib]
name = "error_path_macros"
path = "src/lib.rs"
proc-macro = true
[[test]]
name = "runtime"
path = "tests/runtime.rs"
[dependencies.proc-macro2]
version = "1"
[dependencies.quote]
version = "1"
[dependencies.syn]
version = "2"
features = [
"full",
"extra-traits",
]