[package]
edition = "2021"
rust-version = "1.56"
name = "batch-impl"
version = "0.2.1"
authors = ["5-6-1"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A proc-macro library for batch generating trait impls with a powerful DSL"
homepage = "https://github.com/5-6-1/batch-impl-rs"
documentation = "https://docs.rs/batch-impl"
readme = "README.md"
keywords = [
"macro",
"trait",
"impl",
"batch",
"codegen",
]
categories = ["development-tools::procedural-macro-helpers"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/5-6-1/batch-impl-rs"
[lib]
name = "batch_impl"
path = "src/lib.rs"
proc-macro = true
[[example]]
name = "ds_tests"
path = "examples/ds_tests.rs"
[[example]]
name = "macro_tests"
path = "examples/macro_tests.rs"
[dependencies.proc-macro2]
version = "1"
features = ["span-locations"]
[dependencies.quote]
version = "1"
[dependencies.syn]
version = "2"
features = ["full"]