[package] name = "field_accessor" version = "0.5.2" edition = "2021" authors = ["Tomohiro Endo "] description = "A procedural macro to get and set a struct field by String dynamically." repository = "https://github.com/europeanplaice/field_accessor" readme = "readme.md" license = "MIT" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html categories = ["data-structures"] keywords = ["getattr", "setattr", "getter", "setter", "proc-macro"] [lib] proc-macro = true [dependencies] syn = {version = "1.0", features = ["full", "extra-traits"]} quote = "1.0"