[package]
edition = "2021"
name = "mpl"
version = "0.3.0"
authors = ["Kazuki Kurota"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "One-rule TDPL/PEG parsing language with a static-codegen backend (FastParse) that beats pest, peg, nom, winnow, and chumsky on equal-work benchmarks."
readme = "README.md"
keywords = [
"combinator",
"generator",
"grammar",
"parser",
"tdpl",
]
categories = ["parsing"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/kurotakazuki/mpl"
[lib]
name = "mpl"
path = "src/lib.rs"
[[test]]
name = "left_recursion"
path = "tests/left_recursion.rs"
[[test]]
name = "number"
path = "tests/number.rs"
[[test]]
name = "parentheses"
path = "tests/parentheses.rs"
[[test]]
name = "wav_riff"
path = "tests/wav_riff.rs"
[dependencies.bumpalo]
version = "3"
features = ["collections"]