• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1[package]
2name = "pest_generator"
3description = "pest code generator"
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", "generator"]
11categories = ["parsing"]
12license = "MIT OR Apache-2.0"
13readme = "_README.md"
14rust-version = "1.61"
15
16[features]
17default = ["std"]
18std = ["pest/std"]
19not-bootstrap-in-src = ["pest_meta/not-bootstrap-in-src"]
20grammar-extras = ["pest_meta/grammar-extras"]
21
22[dependencies]
23pest = { path = "../pest", version = "2.7.6", default-features = false }
24pest_meta = { path = "../meta", version = "2.7.6" }
25proc-macro2 = "1.0"
26quote = "1.0"
27syn = "2.0"
28