mpl 0.3.0

One-rule TDPL/PEG parsing language with a static-codegen backend (FastParse) that beats pest, peg, nom, winnow, and chumsky on equal-work benchmarks.
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[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"]