diff --git a/debugger/Cargo.toml b/debugger/Cargo.toml index f22d7173..8819f549 100644 --- a/debugger/Cargo.toml +++ b/debugger/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "pest_debugger" description = "pest grammar debugger" -version = "2.7.8" +version = "2.7.9" edition = "2021" authors = [ "Dragoș Tiselice ", @@ -17,9 +17,9 @@ readme = "_README.md" rust-version = "1.61" [dependencies] -pest = { path = "../pest", version = "2.7.8" } -pest_meta = { path = "../meta", version = "2.7.8" } -pest_vm = { path = "../vm", version = "2.7.8" } +pest = { path = "../pest", version = "2.7.9" } +pest_meta = { path = "../meta", version = "2.7.9" } +pest_vm = { path = "../vm", version = "2.7.9" } reqwest = { version = "= 0.11.13", default-features = false, features = [ "blocking", "json", diff --git a/derive/Cargo.toml b/derive/Cargo.toml index 58d56c58..ace3c4c0 100644 --- a/derive/Cargo.toml +++ b/derive/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "pest_derive" description = "pest's derive macro" -version = "2.7.8" +version = "2.7.9" edition = "2021" authors = ["Dragoș Tiselice "] homepage = "https://pest.rs/" @@ -25,5 +25,5 @@ grammar-extras = ["pest_generator/grammar-extras"] [dependencies] # for tests, included transitively anyway -pest = { path = "../pest", version = "2.7.8", default-features = false } -pest_generator = { path = "../generator", version = "2.7.8", default-features = false } +pest = { path = "../pest", version = "2.7.9", default-features = false } +pest_generator = { path = "../generator", version = "2.7.9", default-features = false } diff --git a/generator/Cargo.toml b/generator/Cargo.toml index eb80f92f..fa16808b 100644 --- a/generator/Cargo.toml +++ b/generator/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "pest_generator" description = "pest code generator" -version = "2.7.8" +version = "2.7.9" edition = "2021" authors = ["Dragoș Tiselice "] homepage = "https://pest.rs/" @@ -22,8 +22,8 @@ grammar-extras = ["pest_meta/grammar-extras"] export-internal = [] [dependencies] -pest = { path = "../pest", version = "2.7.8", default-features = false } -pest_meta = { path = "../meta", version = "2.7.8" } +pest = { path = "../pest", version = "2.7.9", default-features = false } +pest_meta = { path = "../meta", version = "2.7.9" } proc-macro2 = "1.0" quote = "1.0" syn = "2.0" diff --git a/grammars/Cargo.toml b/grammars/Cargo.toml index 8242a6ee..6224c9f2 100644 --- a/grammars/Cargo.toml +++ b/grammars/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "pest_grammars" description = "pest popular grammar implementations" -version = "2.7.8" +version = "2.7.9" edition = "2021" authors = ["Dragoș Tiselice "] homepage = "https://pest.rs/" @@ -14,8 +14,8 @@ readme = "_README.md" rust-version = "1.61" [dependencies] -pest = { path = "../pest", version = "2.7.8" } -pest_derive = { path = "../derive", version = "2.7.8" } +pest = { path = "../pest", version = "2.7.9" } +pest_derive = { path = "../derive", version = "2.7.9" } [dev-dependencies] criterion = "0.5" diff --git a/meta/Cargo.toml b/meta/Cargo.toml index 71fdbd9a..535ed115 100644 --- a/meta/Cargo.toml +++ b/meta/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "pest_meta" description = "pest meta language parser and validator" -version = "2.7.8" +version = "2.7.9" edition = "2021" authors = ["Dragoș Tiselice "] homepage = "https://pest.rs/" @@ -22,7 +22,7 @@ include = [ rust-version = "1.61" [dependencies] -pest = { path = "../pest", version = "2.7.8" } +pest = { path = "../pest", version = "2.7.9" } once_cell = "1.8.0" [build-dependencies] diff --git a/pest/Cargo.toml b/pest/Cargo.toml index 3ffb3ebf..eec4c9b2 100644 --- a/pest/Cargo.toml +++ b/pest/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "pest" description = "The Elegant Parser" -version = "2.7.8" +version = "2.7.9" edition = "2021" authors = ["Dragoș Tiselice "] homepage = "https://pest.rs/" diff --git a/vm/Cargo.toml b/vm/Cargo.toml index fc597f1f..493557a1 100644 --- a/vm/Cargo.toml +++ b/vm/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "pest_vm" description = "pest grammar virtual machine" -version = "2.7.8" +version = "2.7.9" edition = "2021" authors = ["Dragoș Tiselice "] homepage = "https://pest.rs/" @@ -14,8 +14,8 @@ readme = "_README.md" rust-version = "1.61" [dependencies] -pest = { path = "../pest", version = "2.7.8" } -pest_meta = { path = "../meta", version = "2.7.8" } +pest = { path = "../pest", version = "2.7.9" } +pest_meta = { path = "../meta", version = "2.7.9" } [features] grammar-extras = ["pest_meta/grammar-extras"]