diff --git a/debugger/Cargo.toml b/debugger/Cargo.toml index c2938db5..c79c48f6 100644 --- a/debugger/Cargo.toml +++ b/debugger/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "pest_debugger" description = "pest grammar debugger" -version = "2.5.1" +version = "2.5.2" edition = "2021" authors = ["Dragoș Tiselice ", "Tomas Tauber "] homepage = "https://pest.rs/" @@ -14,9 +14,9 @@ readme = "_README.md" rust-version = "1.56" [dependencies] -pest = { path = "../pest", version = "2.5.1" } -pest_meta = { path = "../meta", version = "2.5.1" } -pest_vm = { path = "../vm", version = "2.5.1" } +pest = { path = "../pest", version = "2.5.2" } +pest_meta = { path = "../meta", version = "2.5.2" } +pest_vm = { path = "../vm", version = "2.5.2" } rustyline = "10" thiserror = "1" diff --git a/derive/Cargo.toml b/derive/Cargo.toml index 2dd43a8b..d700c566 100644 --- a/derive/Cargo.toml +++ b/derive/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "pest_derive" description = "pest's derive macro" -version = "2.5.1" +version = "2.5.2" edition = "2021" authors = ["Dragoș Tiselice "] homepage = "https://pest.rs/" @@ -23,5 +23,5 @@ std = ["pest/std", "pest_generator/std"] [dependencies] # for tests, included transitively anyway -pest = { path = "../pest", version = "2.5.1", default-features = false } -pest_generator = { path = "../generator", version = "2.5.1", default-features = false } +pest = { path = "../pest", version = "2.5.2", default-features = false } +pest_generator = { path = "../generator", version = "2.5.2", default-features = false } diff --git a/generator/Cargo.toml b/generator/Cargo.toml index 1836fe06..1a6cb322 100644 --- a/generator/Cargo.toml +++ b/generator/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "pest_generator" description = "pest code generator" -version = "2.5.1" +version = "2.5.2" edition = "2021" authors = ["Dragoș Tiselice "] homepage = "https://pest.rs/" @@ -18,8 +18,8 @@ default = ["std"] std = ["pest/std"] [dependencies] -pest = { path = "../pest", version = "2.5.1", default-features = false } -pest_meta = { path = "../meta", version = "2.5.1" } +pest = { path = "../pest", version = "2.5.2", default-features = false } +pest_meta = { path = "../meta", version = "2.5.2" } proc-macro2 = "1.0" quote = "1.0" syn = "1.0" diff --git a/grammars/Cargo.toml b/grammars/Cargo.toml index 1a293e81..44fda66b 100644 --- a/grammars/Cargo.toml +++ b/grammars/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "pest_grammars" description = "pest popular grammar implementations" -version = "2.5.1" +version = "2.5.2" edition = "2021" authors = ["Dragoș Tiselice "] homepage = "https://pest.rs/" @@ -14,8 +14,8 @@ readme = "_README.md" rust-version = "1.56" [dependencies] -pest = { path = "../pest", version = "2.5.1" } -pest_derive = { path = "../derive", version = "2.5.1" } +pest = { path = "../pest", version = "2.5.2" } +pest_derive = { path = "../derive", version = "2.5.2" } [dev-dependencies] criterion = "0.3" diff --git a/meta/Cargo.toml b/meta/Cargo.toml index c1f004de..654de0b1 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.5.1" +version = "2.5.2" edition = "2021" authors = ["Dragoș Tiselice "] homepage = "https://pest.rs/" @@ -16,7 +16,7 @@ include = ["Cargo.toml", "src/**/*", "src/grammar.rs", "_README.md", "LICENSE-*" rust-version = "1.56" [dependencies] -pest = { path = "../pest", version = "2.5.1" } +pest = { path = "../pest", version = "2.5.2" } once_cell = "1.8.0" [build-dependencies] diff --git a/pest/Cargo.toml b/pest/Cargo.toml index e6d18b06..2dd3837e 100644 --- a/pest/Cargo.toml +++ b/pest/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "pest" description = "The Elegant Parser" -version = "2.5.1" +version = "2.5.2" edition = "2021" authors = ["Dragoș Tiselice "] homepage = "https://pest.rs/" diff --git a/vm/Cargo.toml b/vm/Cargo.toml index 921e5c6e..5061c81d 100644 --- a/vm/Cargo.toml +++ b/vm/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "pest_vm" description = "pest grammar virtual machine" -version = "2.5.1" +version = "2.5.2" edition = "2021" authors = ["Dragoș Tiselice "] homepage = "https://pest.rs/" @@ -14,5 +14,5 @@ readme = "_README.md" rust-version = "1.56" [dependencies] -pest = { path = "../pest", version = "2.5.1" } -pest_meta = { path = "../meta", version = "2.5.1" } +pest = { path = "../pest", version = "2.5.2" } +pest_meta = { path = "../meta", version = "2.5.2" }