29 lines
774 B
TOML
29 lines
774 B
TOML
[package]
|
|
name = "pest_generator"
|
|
description = "pest code generator"
|
|
version = "2.8.8"
|
|
edition = "2021"
|
|
authors = ["Dragoș Tiselice <dragostiselice@gmail.com>"]
|
|
homepage = "https://pest.rs/"
|
|
repository = "https://github.com/pest-parser/pest"
|
|
documentation = "https://docs.rs/pest"
|
|
keywords = ["pest", "generator"]
|
|
categories = ["parsing"]
|
|
license = "MIT OR Apache-2.0"
|
|
readme = "_README.md"
|
|
rust-version = "1.83"
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = ["pest/std"]
|
|
grammar-extras = ["pest_meta/grammar-extras"]
|
|
# Export internal API that is not intended to be stable
|
|
export-internal = []
|
|
|
|
[dependencies]
|
|
pest = { path = "../pest", version = "2.8.8", default-features = false }
|
|
pest_meta = { path = "../meta", version = "2.8.8" }
|
|
proc-macro2 = "1.0"
|
|
quote = "1.0"
|
|
syn = "2.0"
|