2022-11-27 03:40:48 +01:00
|
|
|
[package]
|
2022-11-27 03:44:57 +01:00
|
|
|
name = "php-parser-rs"
|
2022-11-28 18:23:13 +01:00
|
|
|
description = "A handwritten recursive-descent parser for PHP written in Rust"
|
|
|
|
keywords = ["php", "php-parser", "parser", "php-parser-rs", "php-ast"]
|
2022-11-28 18:27:40 +01:00
|
|
|
license = "MIT"
|
2022-11-28 18:29:08 +01:00
|
|
|
repository = "https://github.com/ryangjchandler/php-parser-rs"
|
2022-11-28 18:23:13 +01:00
|
|
|
version = "0.0.0"
|
2022-11-27 03:40:48 +01:00
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
[lib]
|
|
|
|
doctest = false
|
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
pretty_assertions = "1.3.0"
|
2022-11-28 18:20:31 +01:00
|
|
|
|
|
|
|
[[bin]]
|
|
|
|
name = "integration-test"
|
|
|
|
path = "integration-test/run.rs"
|