batch-impl 0.5.1

A proc-macro library for batch generating trait impls with a powerful DSL
Documentation
[package]

name = "batch-impl"

version = "0.5.1"

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"]



[lib]

proc-macro = true

# README(经 `#![doc = include_str!]` 引入)与 lib.rs 文档代码块均已补齐

# 隐藏 `# use` 行,lib doctest 默认开启。路径前缀示例因依赖外部模块上下文

# 无法在 doctest 的 fn main 中编译,标记为 `ignore`。



[dependencies]

syn = { version = "3", features = ["full"] }

quote = "1"

proc-macro2 = "1"



[dev-dependencies]

trybuild = "1.0.118"