summaryrefslogtreecommitdiff
path: root/Cargo.toml.orig
diff options
context:
space:
mode:
Diffstat (limited to 'Cargo.toml.orig')
-rw-r--r--Cargo.toml.orig12
1 files changed, 7 insertions, 5 deletions
diff --git a/Cargo.toml.orig b/Cargo.toml.orig
index 3ea06f5..c4897b5 100644
--- a/Cargo.toml.orig
+++ b/Cargo.toml.orig
@@ -1,7 +1,7 @@
[package]
name = "pest_derive"
description = "pest's derive macro"
-version = "2.5.5"
+version = "2.7.6"
edition = "2021"
authors = ["DragoČ™ Tiselice <dragostiselice@gmail.com>"]
homepage = "https://pest.rs/"
@@ -9,9 +9,9 @@ repository = "https://github.com/pest-parser/pest"
documentation = "https://docs.rs/pest"
keywords = ["pest", "parser", "peg", "grammar"]
categories = ["parsing"]
-license = "MIT/Apache-2.0"
+license = "MIT OR Apache-2.0"
readme = "_README.md"
-rust-version = "1.56"
+rust-version = "1.61"
[lib]
name = "pest_derive"
@@ -20,8 +20,10 @@ proc-macro = true
[features]
default = ["std"]
std = ["pest/std", "pest_generator/std"]
+not-bootstrap-in-src = ["pest_generator/not-bootstrap-in-src"]
+grammar-extras = ["pest_generator/grammar-extras"]
[dependencies]
# for tests, included transitively anyway
-pest = { path = "../pest", version = "2.5.5", default-features = false }
-pest_generator = { path = "../generator", version = "2.5.5", default-features = false }
+pest = { path = "../pest", version = "2.7.6", default-features = false }
+pest_generator = { path = "../generator", version = "2.7.6", default-features = false }