1# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
2#
3# When uploading crates to the registry Cargo will automatically
4# "normalize" Cargo.toml files for maximal compatibility
5# with all versions of Cargo and also rewrite `path` dependencies
6# to registry (e.g., crates.io) dependencies.
7#
8# If you are reading this file be aware that the original Cargo.toml
9# will likely look very different (and much more reasonable).
10# See Cargo.toml.orig for the original contents.
11
12[package]
13edition = "2021"
14rust-version = "1.61"
15name = "pest_derive"
16version = "2.7.6"
17authors = ["Dragoș Tiselice <[email protected]>"]
18description = "pest's derive macro"
19homepage = "https://pest.rs/"
20documentation = "https://docs.rs/pest"
21readme = "_README.md"
22keywords = [
23    "pest",
24    "parser",
25    "peg",
26    "grammar",
27]
28categories = ["parsing"]
29license = "MIT OR Apache-2.0"
30repository = "https://github.com/pest-parser/pest"
31
32[lib]
33name = "pest_derive"
34proc-macro = true
35
36[dependencies.pest]
37version = "2.7.6"
38default-features = false
39
40[dependencies.pest_generator]
41version = "2.7.6"
42default-features = false
43
44[features]
45default = ["std"]
46grammar-extras = ["pest_generator/grammar-extras"]
47not-bootstrap-in-src = ["pest_generator/not-bootstrap-in-src"]
48std = [
49    "pest/std",
50    "pest_generator/std",
51]
52