From 6f42757be928c1453a67eee5803eb60b3613abe8 Mon Sep 17 00:00:00 2001 From: Tomas Tauber <2410580+tomtau@users.noreply.github.com> Date: Tue, 29 Aug 2023 15:28:20 +0800 Subject: [PATCH] bump version, make memchr default memchr now supports aarch64: https://github.com/BurntSushi/memchr/pull/129 cargo lib (not-bootstrap-in-src) did not respect umask: https://github.com/advisories/GHSA-j3xp-wfr4-hx87 (probably not an issue here) --- debugger/Cargo.toml | 8 ++++---- derive/Cargo.toml | 6 +++--- generator/Cargo.toml | 6 +++--- grammars/Cargo.toml | 6 +++--- meta/Cargo.toml | 6 +++--- pest/Cargo.toml | 4 ++-- vm/Cargo.toml | 6 +++--- 7 files changed, 21 insertions(+), 21 deletions(-) diff --git a/debugger/Cargo.toml b/debugger/Cargo.toml index e11f0a28..2a8695e1 100644 --- a/debugger/Cargo.toml +++ b/debugger/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "pest_debugger" description = "pest grammar debugger" -version = "2.7.2" +version = "2.7.3" edition = "2021" authors = ["Dragoș Tiselice ", "Tomas Tauber "] homepage = "https://pest.rs/" @@ -14,9 +14,9 @@ readme = "_README.md" rust-version = "1.60" [dependencies] -pest = { path = "../pest", version = "2.7.2" } -pest_meta = { path = "../meta", version = "2.7.2" } -pest_vm = { path = "../vm", version = "2.7.2" } +pest = { path = "../pest", version = "2.7.3" } +pest_meta = { path = "../meta", version = "2.7.3" } +pest_vm = { path = "../vm", version = "2.7.3" } reqwest = { version = "= 0.11.13", default-features = false, features = ["blocking", "json", "default-tls"] } rustyline = "10" serde_json = "1" diff --git a/derive/Cargo.toml b/derive/Cargo.toml index 8de0f14e..b9486c66 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.2" +version = "2.7.3" 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.2", default-features = false } -pest_generator = { path = "../generator", version = "2.7.2", default-features = false } +pest = { path = "../pest", version = "2.7.3", default-features = false } +pest_generator = { path = "../generator", version = "2.7.3", default-features = false } diff --git a/generator/Cargo.toml b/generator/Cargo.toml index 1763657e..c329ff88 100644 --- a/generator/Cargo.toml +++ b/generator/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "pest_generator" description = "pest code generator" -version = "2.7.2" +version = "2.7.3" edition = "2021" authors = ["Dragoș Tiselice "] homepage = "https://pest.rs/" @@ -20,8 +20,8 @@ not-bootstrap-in-src = ["pest_meta/not-bootstrap-in-src"] grammar-extras = ["pest_meta/grammar-extras"] [dependencies] -pest = { path = "../pest", version = "2.7.2", default-features = false } -pest_meta = { path = "../meta", version = "2.7.2" } +pest = { path = "../pest", version = "2.7.3", default-features = false } +pest_meta = { path = "../meta", version = "2.7.3" } proc-macro2 = "1.0" quote = "1.0" syn = "2.0" diff --git a/grammars/Cargo.toml b/grammars/Cargo.toml index 9cc543be..3d774ed0 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.2" +version = "2.7.3" edition = "2021" authors = ["Dragoș Tiselice "] homepage = "https://pest.rs/" @@ -14,8 +14,8 @@ readme = "_README.md" rust-version = "1.60" [dependencies] -pest = { path = "../pest", version = "2.7.2" } -pest_derive = { path = "../derive", version = "2.7.2" } +pest = { path = "../pest", version = "2.7.3" } +pest_derive = { path = "../derive", version = "2.7.3" } [dev-dependencies] criterion = "0.5" diff --git a/meta/Cargo.toml b/meta/Cargo.toml index 5aa93d15..d43e94b7 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.2" +version = "2.7.3" edition = "2021" authors = ["Dragoș Tiselice "] homepage = "https://pest.rs/" @@ -16,12 +16,12 @@ include = ["Cargo.toml", "src/**/*", "src/grammar.rs", "_README.md", "LICENSE-*" rust-version = "1.60" [dependencies] -pest = { path = "../pest", version = "2.7.2" } +pest = { path = "../pest", version = "2.7.3" } once_cell = "1.8.0" [build-dependencies] sha2 = { version = "0.10", default-features = false } -cargo = { version = "0.70", optional = true } +cargo = { version = "0.72.2", optional = true } [features] default = [] diff --git a/pest/Cargo.toml b/pest/Cargo.toml index aa3e131e..023c5763 100644 --- a/pest/Cargo.toml +++ b/pest/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "pest" description = "The Elegant Parser" -version = "2.7.2" +version = "2.7.3" edition = "2021" authors = ["Dragoș Tiselice "] homepage = "https://pest.rs/" @@ -14,7 +14,7 @@ readme = "_README.md" rust-version = "1.60" [features] -default = ["std"] +default = ["std", "memchr"] # Implements `std::error::Error` for the `Error` type std = ["ucd-trie/std", "dep:thiserror"] # Enables the `to_json` function for `Pair` and `Pairs` diff --git a/vm/Cargo.toml b/vm/Cargo.toml index 2ce176b8..9261eef2 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.2" +version = "2.7.3" edition = "2021" authors = ["Dragoș Tiselice "] homepage = "https://pest.rs/" @@ -14,8 +14,8 @@ readme = "_README.md" rust-version = "1.60" [dependencies] -pest = { path = "../pest", version = "2.7.2" } -pest_meta = { path = "../meta", version = "2.7.2" } +pest = { path = "../pest", version = "2.7.3" } +pest_meta = { path = "../meta", version = "2.7.3" } [features] grammar-extras = ["pest_meta/grammar-extras"] \ No newline at end of file