• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1[package]
2name = "pest_derive"
3description = "pest's derive macro"
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", "peg", "grammar"]
11categories = ["parsing"]
12license = "MIT OR Apache-2.0"
13readme = "_README.md"
14rust-version = "1.61"
15
16[lib]
17name = "pest_derive"
18proc-macro = true
19
20[features]
21default = ["std"]
22std = ["pest/std", "pest_generator/std"]
23not-bootstrap-in-src = ["pest_generator/not-bootstrap-in-src"]
24grammar-extras = ["pest_generator/grammar-extras"]
25
26[dependencies]
27# for tests, included transitively anyway
28pest = { path = "../pest", version = "2.7.6", default-features = false }
29pest_generator = { path = "../generator", version = "2.7.6", default-features = false }
30