[package]
name = "derive_builder_macro"
version = "0.20.2"
authors = [
"Colin Kiegel <kiegel@gmx.de>",
"Pascal Hertleif <killercup@gmail.com>",
"Jan-Erik Rediger <janerik@fnordig.de>",
"Ted Driggs <ted.driggs@outlook.com>",
]
edition = "2018"
description = "Rust macro to automatically implement the builder pattern for arbitrary structs."
repository = "https://github.com/colin-kiegel/rust-derive-builder"
documentation = "https://docs.rs/derive_builder_macro/0.20.2"
license = "MIT OR Apache-2.0"
categories = ["development-tools", "rust-patterns"]
keywords = ["derive", "macro", "builder", "setter", "struct"]
readme = "README.md"
[lib]
proc-macro = true
[features]
alloc = ["derive_builder_core/alloc"]
clippy = ["derive_builder_core/clippy"]
lib_has_std = ["derive_builder_core/lib_has_std"]
[dependencies]
derive_builder_core = { version = "=0.20.2", path = "../derive_builder_core" }
syn = { version = "2.0.15", features = ["full", "extra-traits"] }