[package] name = "pxp-parser" description = "A handwritten, recursive-descent parser for the PXP superset." keywords = ["php", "php-parser", "parser", "php-parser-rs", "php-ast"] repository = "https://github.com/php-rust-tools/pxp-parser" version = "0.0.0-b4" edition = "2021" license = "MIT OR Apache-2.0" authors = [ "Ryan Chandler ", "Contributors "] default-run = "pxp-parser" [lib] doctest = false [dev-dependencies] pretty_assertions = { version = "1.3.0" } [[bin]] name = "pxp-parser-snapshot" path = "bin/snapshot.rs" [[bin]] name = "pxp-parser-schema" path = "bin/schema.rs" [dependencies] ariadne = { version = "0.1.5" } clap = { version = "4.0.32", features = ["derive"] } schemars = { version = "0.8.11" } serde = { version = "1.0.149", features = ["derive"] } serde_json = { version = "1.0.89" } [profile.release] opt-level = 3 debug = false strip = 'symbols' debug-assertions = false overflow-checks = false lto = 'fat' panic = 'abort' incremental = true codegen-units = 1 rpath = true