[package] name = "parslers-macro" version = "0.1.0" edition = "2021" categories = ["parsing", "text-processing"] description = "A Staged Selective Parser Combinator Library for the Rust Programming Language" keywords = ["parser", "parsing", "parser-combinators", "combinator"] license = "MIT OR Apache-2.0" readme = "README.md" authors = ["Jordan Hall "] repository = "https://github.com/JordanLloydHall/parslers" rust-version = "1.70.0" [lib] proc-macro = true [build-dependencies] syn = { version = "2.0.29", features = ["extra-traits", "full"] } quote = "1.0.33" proc-macro2 = "1.0.66" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] syn = { version = "2.0.29", features = ["extra-traits", "full"] } quote = "1.0.33" proc-macro2 = "1.0.66"