1[package] 2name = "pest_meta" 3description = "pest meta language parser and validator" 4version = "2.7.6" 5edition = "2021" 6authors = ["Dragoș Tiselice <dragostiselice@gmail.com>"] 7homepage = "https://pest.rs/" 8repository = "https://github.com/pest-parser/pest" 9documentation = "https://docs.rs/pest" 10keywords = ["pest", "parser", "meta", "optimizer"] 11categories = ["parsing"] 12license = "MIT OR Apache-2.0" 13readme = "_README.md" 14exclude = ["src/grammar.pest"] 15include = ["Cargo.toml", "src/**/*", "src/grammar.rs", "_README.md", "LICENSE-*"] 16rust-version = "1.61" 17 18[dependencies] 19pest = { path = "../pest", version = "2.7.6" } 20once_cell = "1.8.0" 21 22[build-dependencies] 23sha2 = { version = "0.10", default-features = false } 24cargo = { version = "0.72.2", optional = true } 25 26[features] 27default = [] 28not-bootstrap-in-src = ["dep:cargo"] 29grammar-extras = [] 30