parser/Cargo.toml

24 lines
695 B
TOML
Raw Permalink Normal View History

[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:29:08 +01:00
repository = "https://github.com/ryangjchandler/php-parser-rs"
2022-11-28 18:30:00 +01:00
version = "0.0.0-b1"
edition = "2021"
license = "MIT OR Apache-2.0"
authors = [ "Ryan Chandler <https://github.com/ryangjchandler>", "Contributors <https://github.com/ryangjchandler/php-parser-rs/graphs/contributors>"]
[lib]
doctest = false
[dev-dependencies]
pretty_assertions = "1.3.0"
[[bin]]
name = "snapshot"
path = "bin/snapshot.rs"
[dependencies]
serde = { version = "1.0.149", features = ["derive"] }
serde_json = { version = "1.0.89" }