[package]
edition = "2024"
name = "attrimpl"
version = "0.5.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "The crate provides attributes to automatically implement common traits and reduce boilerplate code."
readme = "README.md"
keywords = [
"macro",
"traits",
"boilerplate",
"getter",
"setter",
]
license = "MIT"
repository = "https://github.com/bytifex/attrimpl.git"
[lib]
name = "attrimpl"
path = "src/lib.rs"
proc-macro = true
[[test]]
name = "compilation"
path = "tests/compilation.rs"
[[test]]
name = "enums"
path = "tests/enums.rs"
[[test]]
name = "named_structs"
path = "tests/named_structs.rs"
[[test]]
name = "tuple_structs"
path = "tests/tuple_structs.rs"
[dependencies.proc-macro2]
version = "1.0.103"
[dependencies.quote]
version = "1.0.41"
[dependencies.syn]
version = "2.0.108"
features = ["full"]