pub-fields/Cargo.toml
2023-07-05 10:56:10 -04:00

15 lines
344 B
TOML

[package]
name = "pub-fields"
version = "0.1.1"
edition = "2021"
authors = ["sam0x17"]
description = "Provides a proc macro attribute that defaults all struct fields to public."
repository = "https://github.com/sam0x17/pub-fields"
license = "MIT"
[lib]
proc-macro = true
[dependencies]
syn = { version = "2", features = ["full"]}
quote = "1"