[[bench]]
harness = false
name = "lexer"
path = "benches/lexer.rs"
[dependencies.bstr]
features = ["serde"]
version = "1.11.1"
[dependencies.bumpalo]
features = ["collections", "serde"]
version = "3.16.0"
[dependencies.serde]
features = ["derive"]
version = "1.0"
[dev-dependencies.criterion]
features = ["html_reports"]
version = "0.5"
[dev-dependencies.insta]
features = ["yaml"]
version = "1.38.0"
[[example]]
name = "profile"
path = "examples/profile.rs"
[lib]
name = "backyard_lexer"
path = "src/lib.rs"
[lints.clippy]
needless_lifetimes = "allow"
vec_box = "allow"
[lints.rust]
[package]
authors = ["Alzera Cita <alzeracita23@gmail.com>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
description = "Generating tokens representation of PHP code."
edition = "2021"
keywords = ["php", "parser"]
license = "MIT"
name = "backyard-lexer"
readme = "README.md"
repository = "https://github.com/Alzera/backyard"
version = "0.1.10"
[[test]]
name = "comment"
path = "tests/comment.rs"
[[test]]
name = "error"
path = "tests/error.rs"
[[test]]
name = "inline"
path = "tests/inline.rs"
[[test]]
name = "keywords"
path = "tests/keywords.rs"
[[test]]
name = "lexer"
path = "tests/lexer.rs"
[[test]]
name = "number"
path = "tests/number.rs"
[[test]]
name = "string"
path = "tests/string.rs"
[[test]]
name = "variable"
path = "tests/variable.rs"