[package]
edition = "2024"
rust-version = "1.93.0"
name = "batch-impl"
version = "0.5.2"
authors = ["5-6-1"]
build = false
exclude = ["rustfmt.toml"]
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 = "quickstart"
path = "examples/quickstart.rs"
[[example]]
name = "simplify"
path = "examples/simplify.rs"
[[test]]
name = "dsl"
path = "tests/dsl.rs"
[[test]]
name = "regression"
path = "tests/regression.rs"
[[test]]
name = "ui"
path = "tests/ui.rs"
[dependencies.proc-macro2]
version = "1"
[dependencies.quote]
version = "1"
[dependencies.syn]
version = "3"
features = ["full"]
[dev-dependencies.proptest]
version = "1"
[dev-dependencies.trybuild]
version = "1.0.118"