[dependencies.pest]
default-features = false
version = "2.8.3"
[dependencies.pest_generator]
default-features = false
version = "2.8.3"
[[example]]
name = "calc"
path = "examples/calc.rs"
[[example]]
name = "help-menu"
path = "examples/help-menu.rs"
[features]
default = ["std"]
grammar-extras = ["pest_generator/grammar-extras"]
not-bootstrap-in-src = ["pest_generator/not-bootstrap-in-src"]
std = ["pest/std", "pest_generator/std"]
[lib]
name = "pest_derive"
path = "src/lib.rs"
proc-macro = true
[package]
authors = ["DragoČ™ Tiselice <dragostiselice@gmail.com>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["parsing"]
description = "pest's derive macro"
documentation = "https://docs.rs/pest"
edition = "2021"
homepage = "https://pest.rs/"
keywords = ["pest", "parser", "peg", "grammar"]
license = "MIT OR Apache-2.0"
name = "pest_derive"
readme = "_README.md"
repository = "https://github.com/pest-parser/pest"
rust-version = "1.81"
version = "2.8.3"
[[test]]
name = "grammar"
path = "tests/grammar.rs"
[[test]]
name = "grammar_inline"
path = "tests/grammar_inline.rs"
[[test]]
name = "implicit"
path = "tests/implicit.rs"
[[test]]
name = "lists"
path = "tests/lists.rs"
[[test]]
name = "oneormore"
path = "tests/oneormore.rs"
[[test]]
name = "opt"
path = "tests/opt.rs"
[[test]]
name = "reporting"
path = "tests/reporting.rs"
[[test]]
name = "surround"
path = "tests/surround.rs"