simple-builder-macro 0.0.2

A procedural macro for creating a Builder object for any struct.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
[package]
name = "simple-builder-macro"
version = "0.0.2"
edition = "2021"
license = "MIT"
authors = ["Brendan Blanchard"]
description = "A procedural macro for creating a Builder object for any struct."
repository = "https://github.com/Brendan-Blanchard/simple-builder"
exclude = [".idea", ".gitignore", ".github"]

[dependencies]
proc-macro2 = "1.0"
quote = "1.0"
syn = { version = "2.0", features = ["full"] }

[lib]
proc-macro = true