[workspace]
members = ["./peg-macros", "./peg-runtime"]
[package]
name = "peg"
version = "0.8.4"
authors = [ "Kevin Mehall <km@kevinmehall.net>" ]
license = "MIT"
repository = "https://github.com/kevinmehall/rust-peg"
description = "A simple Parsing Expression Grammar (PEG) parser generator."
keywords = ["peg", "parser", "parsing", "grammar"]
categories = ["parsing"]
readme = "README.md"
edition = "2018"
rust-version = "1.68.0"
[dependencies]
peg-macros = { path = "./peg-macros", version = "= 0.8.4" }
peg-runtime = { path = "./peg-runtime", version = "= 0.8.3" }
[dev-dependencies]
trybuild = "1.0.80"
version_check = "0.9"
[[test]]
name = "trybuild"
path = "tests/trybuild.rs"
harness = false
[features]
default = ["std"]
trace = ["peg-macros/trace"]
std = ["peg-runtime/std"]
unstable = ["peg-runtime/unstable"]