batch-impl 0.7.2

A proc-macro library for batch generating trait impls with a powerful DSL
Documentation
[package]
name = "batch-impl"
version = "0.7.2"
edition = "2024"
authors = ["5-6-1"]
description = "A proc-macro library for batch generating trait impls with a powerful DSL"
license = "MIT OR Apache-2.0"
repository = "https://github.com/5-6-1/batch-impl-rs"
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"]
rust-version = "1.93.0"
exclude = ["rustfmt.toml", ".aiassistant/", ".github/", ".reasonix/", "reasonix.toml"]

[lib]
proc-macro = true
# README (via `#![doc = include_str!]`) and lib.rs doc code blocks are complete;
# hidden `# use` lines keep lib doctests enabled by default. The path-prefix
# example depends on an external module context and is marked `ignore` since it
# cannot compile inside doctest's implicit `fn main`.

[dependencies]
syn = { version = "3", features = ["full", "visit"] }
quote = "1"
proc-macro2 = "1"

[dev-dependencies]
trybuild = "1.0.118"
proptest = "1"