[package]
edition = "2021"
name = "php-rs-parser"
version = "0.2.1"
authors = ["jorgsowa"]
build = "build.rs"
exclude = [
"benches/",
"tests/",
"examples/",
".gitmodules",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Fast PHP parser producing a typed AST"
homepage = "https://github.com/jorgsowa/rust-php-parser"
readme = "README.md"
keywords = [
"php",
"parser",
"ast",
"syntax",
]
categories = [
"parsing",
"development-tools",
"compilers",
]
license = "BSD-3-Clause"
repository = "https://github.com/jorgsowa/rust-php-parser"
[features]
default = []
instrument = []
[lib]
name = "php_rs_parser"
path = "src/lib.rs"
[dependencies.bumpalo]
version = "3"
features = ["collections"]
[dependencies.lazy_static]
version = "1.4"
[dependencies.miette]
version = "7"
features = ["fancy"]
[dependencies.php-ast]
version = "0.2.1"
[dependencies.php-lexer]
version = "0.2.1"
[dependencies.thiserror]
version = "2"
[dev-dependencies.bumpalo]
version = "3"
features = ["collections"]
[dev-dependencies.criterion]
version = "0.8"
features = ["html_reports"]
[dev-dependencies.insta]
version = "1"
[dev-dependencies.mimalloc]
version = "0.1"
default-features = false
[dev-dependencies.pprof]
version = "0.13"
features = [
"flamegraph",
"criterion",
]
[dev-dependencies.serde]
version = "1"
features = ["derive"]
[dev-dependencies.serde_json]
version = "1"
[dev-dependencies.walkdir]
version = "2"