Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update unicode to version 16 #1044

Merged
merged 1 commit into from
Oct 14, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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.13"
version = "2.7.14"
edition = "2021"
authors = [
"Dragoș Tiselice <dragostiselice@gmail.com>",
Expand All @@ -17,9 +17,9 @@ readme = "_README.md"
rust-version = "1.61"

[dependencies]
pest = { path = "../pest", version = "2.7.13" }
pest_meta = { path = "../meta", version = "2.7.13" }
pest_vm = { path = "../vm", version = "2.7.13" }
pest = { path = "../pest", version = "2.7.14" }
pest_meta = { path = "../meta", version = "2.7.14" }
pest_vm = { path = "../vm", version = "2.7.14" }
reqwest = { version = "= 0.11.13", default-features = false, features = [
"blocking",
"json",
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.13"
version = "2.7.14"
edition = "2021"
authors = ["Dragoș Tiselice <dragostiselice@gmail.com>"]
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.13", default-features = false }
pest_generator = { path = "../generator", version = "2.7.13", default-features = false }
pest = { path = "../pest", version = "2.7.14", default-features = false }
pest_generator = { path = "../generator", version = "2.7.14", 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.13"
version = "2.7.14"
edition = "2021"
authors = ["Dragoș Tiselice <dragostiselice@gmail.com>"]
homepage = "https://pest.rs/"
Expand All @@ -22,8 +22,8 @@ grammar-extras = ["pest_meta/grammar-extras"]
export-internal = []

[dependencies]
pest = { path = "../pest", version = "2.7.13", default-features = false }
pest_meta = { path = "../meta", version = "2.7.13" }
pest = { path = "../pest", version = "2.7.14", default-features = false }
pest_meta = { path = "../meta", version = "2.7.14" }
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.13"
version = "2.7.14"
edition = "2021"
authors = ["Dragoș Tiselice <dragostiselice@gmail.com>"]
homepage = "https://pest.rs/"
Expand All @@ -14,8 +14,8 @@ readme = "_README.md"
rust-version = "1.61"

[dependencies]
pest = { path = "../pest", version = "2.7.13" }
pest_derive = { path = "../derive", version = "2.7.13" }
pest = { path = "../pest", version = "2.7.14" }
pest_derive = { path = "../derive", version = "2.7.14" }

[dev-dependencies]
criterion = "0.5"
Expand Down
4 changes: 2 additions & 2 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.13"
version = "2.7.14"
edition = "2021"
authors = ["Dragoș Tiselice <dragostiselice@gmail.com>"]
homepage = "https://pest.rs/"
Expand All @@ -22,7 +22,7 @@ include = [
rust-version = "1.61"

[dependencies]
pest = { path = "../pest", version = "2.7.13" }
pest = { path = "../pest", version = "2.7.14" }
once_cell = "1.8.0"

[build-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion 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.13"
version = "2.7.14"
edition = "2021"
authors = ["Dragoș Tiselice <dragostiselice@gmail.com>"]
homepage = "https://pest.rs/"
Expand Down
1,811 changes: 975 additions & 836 deletions pest/src/unicode/binary.rs

Large diffs are not rendered by default.

1,153 changes: 590 additions & 563 deletions pest/src/unicode/category.rs

Large diffs are not rendered by default.

370 changes: 319 additions & 51 deletions pest/src/unicode/script.rs

Large diffs are not rendered by default.

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.13"
version = "2.7.14"
tomtau marked this conversation as resolved.
Show resolved Hide resolved
edition = "2021"
authors = ["Dragoș Tiselice <dragostiselice@gmail.com>"]
homepage = "https://pest.rs/"
Expand All @@ -14,8 +14,8 @@ readme = "_README.md"
rust-version = "1.61"

[dependencies]
pest = { path = "../pest", version = "2.7.13" }
pest_meta = { path = "../meta", version = "2.7.13" }
pest = { path = "../pest", version = "2.7.14" }
pest_meta = { path = "../meta", version = "2.7.14" }

[features]
grammar-extras = ["pest_meta/grammar-extras"]
Loading