[package]
edition = "2024"
name = "errorx-macros"
version = "0.0.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "macros for the errorx crate."
homepage = "https://www.github.com/aacebo/zinq"
documentation = "https://www.github.com/aacebo/zinq"
readme = "README.md"
license = "MIT"
repository = "https://www.github.com/aacebo/zinq"
[lib]
name = "errorx_macros"
path = "src/lib.rs"
proc-macro = true
[[test]]
name = "custom_code"
path = "tests/custom_code.rs"
[[test]]
name = "custom_message"
path = "tests/custom_message.rs"
[[test]]
name = "custom_name"
path = "tests/custom_name.rs"
[[test]]
name = "mod"
path = "tests/mod.rs"
[dependencies.proc-macro2]
version = "1"
[dependencies.quote]
version = "1"
[dependencies.syn]
version = "2"
features = [
"full",
"parsing",
]
[lints.rust]
named_arguments_used_positionally = "allow"