diff --git a/README.md b/README.md index 9d38afa4..cb8055eb 100644 --- a/README.md +++ b/README.md @@ -167,6 +167,8 @@ mod b { ## Projects using pest +You can find more projects and ecosystem tools in the [awesome-pest](https://github.com/pest-parser/awesome-pest) repo. + * [pest_meta](https://github.com/pest-parser/pest/blob/master/meta/src/grammar.pest) (bootstrapped) * [AshPaper](https://github.com/shnewto/ashpaper) * [brain](https://github.com/brain-lang/brain) diff --git a/debugger/Cargo.toml b/debugger/Cargo.toml index 921a7703..e5767572 100644 --- a/debugger/Cargo.toml +++ b/debugger/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "pest_debugger" description = "pest grammar debugger" -version = "2.5.6" +version = "2.5.7" 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.6" } -pest_meta = { path = "../meta", version = "2.5.6" } -pest_vm = { path = "../vm", version = "2.5.6" } +pest = { path = "../pest", version = "2.5.7" } +pest_meta = { path = "../meta", version = "2.5.7" } +pest_vm = { path = "../vm", version = "2.5.7" } reqwest = { version = "0.11", default-features = false, features = ["blocking", "json", "default-tls"] } rustyline = "10" serde_json = "1" diff --git a/derive/Cargo.toml b/derive/Cargo.toml index 9c4e6948..391fb4ed 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.6" +version = "2.5.7" 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.6", default-features = false } -pest_generator = { path = "../generator", version = "2.5.6", default-features = false } +pest = { path = "../pest", version = "2.5.7", default-features = false } +pest_generator = { path = "../generator", version = "2.5.7", default-features = false } diff --git a/generator/Cargo.toml b/generator/Cargo.toml index b9610a95..cff12481 100644 --- a/generator/Cargo.toml +++ b/generator/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "pest_generator" description = "pest code generator" -version = "2.5.6" +version = "2.5.7" 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.6", default-features = false } -pest_meta = { path = "../meta", version = "2.5.6" } +pest = { path = "../pest", version = "2.5.7", default-features = false } +pest_meta = { path = "../meta", version = "2.5.7" } proc-macro2 = "1.0" quote = "1.0" syn = "2.0" diff --git a/grammars/Cargo.toml b/grammars/Cargo.toml index ffaa8267..e974d574 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.6" +version = "2.5.7" 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.6" } -pest_derive = { path = "../derive", version = "2.5.6" } +pest = { path = "../pest", version = "2.5.7" } +pest_derive = { path = "../derive", version = "2.5.7" } [dev-dependencies] criterion = "0.3" diff --git a/meta/Cargo.toml b/meta/Cargo.toml index e5828b46..2ae15cb3 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.6" +version = "2.5.7" 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.6" } +pest = { path = "../pest", version = "2.5.7" } once_cell = "1.8.0" [build-dependencies] diff --git a/pest/Cargo.toml b/pest/Cargo.toml index dc3080c2..d9825e2d 100644 --- a/pest/Cargo.toml +++ b/pest/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "pest" description = "The Elegant Parser" -version = "2.5.6" +version = "2.5.7" edition = "2021" authors = ["Dragoș Tiselice "] homepage = "https://pest.rs/" diff --git a/vm/Cargo.toml b/vm/Cargo.toml index 87d2d8b7..6dca0317 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.6" +version = "2.5.7" 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.6" } -pest_meta = { path = "../meta", version = "2.5.6" } +pest = { path = "../pest", version = "2.5.7" } +pest_meta = { path = "../meta", version = "2.5.7" }