Skip to content

Commit

Permalink
bump version, make memchr default
Browse files Browse the repository at this point in the history
memchr now supports aarch64: BurntSushi/memchr#129
cargo lib (not-bootstrap-in-src) did not respect umask: GHSA-j3xp-wfr4-hx87
(probably not an issue here)
  • Loading branch information
tomtau committed Aug 29, 2023
1 parent e051156 commit 6f42757
Show file tree
Hide file tree
Showing 7 changed files with 21 additions and 21 deletions.
8 changes: 4 additions & 4 deletions debugger/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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 <[email protected]>", "Tomas Tauber <[email protected]>"]
homepage = "https://pest.rs/"
Expand All @@ -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"
Expand Down
6 changes: 3 additions & 3 deletions derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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 <[email protected]>"]
homepage = "https://pest.rs/"
Expand All @@ -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 }
6 changes: 3 additions & 3 deletions generator/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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 <[email protected]>"]
homepage = "https://pest.rs/"
Expand All @@ -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"
6 changes: 3 additions & 3 deletions grammars/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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 <[email protected]>"]
homepage = "https://pest.rs/"
Expand All @@ -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"
Expand Down
6 changes: 3 additions & 3 deletions meta/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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 <[email protected]>"]
homepage = "https://pest.rs/"
Expand All @@ -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 = []
Expand Down
4 changes: 2 additions & 2 deletions pest/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "pest"
description = "The Elegant Parser"
version = "2.7.2"
version = "2.7.3"
edition = "2021"
authors = ["Dragoș Tiselice <[email protected]>"]
homepage = "https://pest.rs/"
Expand All @@ -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`
Expand Down
6 changes: 3 additions & 3 deletions vm/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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 <[email protected]>"]
homepage = "https://pest.rs/"
Expand All @@ -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"]

0 comments on commit 6f42757

Please sign in to comment.