[package] name = "derive-syn-parse" version = "0.2.0" authors = ["sharnoff "] license = "MIT OR Apache-2.0" description = "Derive macro for `syn::parse::Parse`" repository = "https://github.com/sharnoff/derive-syn-parse" categories = ["development-tools::procedural-macro-helpers"] edition = "2018" [lib] proc-macro = true [features] full = ["syn/full"] [dependencies] syn = { version = "2", features = ["derive", "parsing"] } quote = "1" proc-macro2 = "1" # Testing relies on being able to compare the output of the macros, which is why we need a # different version of syn [dev-dependencies] syn = { version = "2", features = ["full", "extra-traits"] }