[package]
edition = "2021"
name = "traced_macro"
version = "0.1.0"
authors = ["lihaohan"]
build = false
exclude = [
"target/",
".git/",
".github/",
".idea/",
".vscode/",
"Cargo.lock",
"*.log",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Procedural macro support for traced_error"
homepage = "https://github.com/lihaohan/traced_error"
documentation = "https://docs.rs/traced_macro"
readme = "README.md"
keywords = [
"error",
"context",
"trace",
"typed",
"macro",
]
categories = [
"rust-patterns",
"development-tools::debugging",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/lihaohan/traced_error"
resolver = "3"
[lib]
name = "traced_macro"
path = "src/lib.rs"
proc-macro = true
[dependencies.proc-macro2]
version = "1"
[dependencies.quote]
version = "1"
[dependencies.syn]
version = "2"
features = [
"full",
"visit-mut",
]