-
-
Notifications
You must be signed in to change notification settings - Fork 264
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update deps and switch to 2021 edition (#715)
* Update deps and swith to 2021 edition * fix up panic macro usage Co-authored-by: Laurent Wandrebeck <[email protected]>
- Loading branch information
1 parent
9f7e4f7
commit 7305cf9
Showing
8 changed files
with
13 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
name = "pest_bootstrap" | ||
description = "pest bootstrap script" | ||
version = "0.0.0" | ||
edition = "2018" | ||
edition = "2021" | ||
authors = ["Dragoș Tiselice <[email protected]>"] | ||
homepage = "https://pest-parser.github.io/" | ||
repository = "https://github.com/pest-parser/pest" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
name = "pest_derive" | ||
description = "pest's derive macro" | ||
version = "2.4.0" | ||
edition = "2018" | ||
edition = "2021" | ||
authors = ["Dragoș Tiselice <[email protected]>"] | ||
homepage = "https://pest-parser.github.io/" | ||
repository = "https://github.com/pest-parser/pest" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
name = "pest_generator" | ||
description = "pest code generator" | ||
version = "2.4.0" | ||
edition = "2018" | ||
edition = "2021" | ||
authors = ["Dragoș Tiselice <[email protected]>"] | ||
homepage = "https://pest-parser.github.io/" | ||
repository = "https://github.com/pest-parser/pest" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
name = "pest_grammars" | ||
description = "pest popular grammar implementations" | ||
version = "2.4.0" | ||
edition = "2018" | ||
edition = "2021" | ||
authors = ["Dragoș Tiselice <[email protected]>"] | ||
homepage = "https://pest-parser.github.io/" | ||
repository = "https://github.com/pest-parser/pest" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
name = "pest_meta" | ||
description = "pest meta language parser and validator" | ||
version = "2.4.0" | ||
edition = "2018" | ||
edition = "2021" | ||
authors = ["Dragoș Tiselice <[email protected]>"] | ||
homepage = "https://pest-parser.github.io/" | ||
repository = "https://github.com/pest-parser/pest" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
name = "pest" | ||
description = "The Elegant Parser" | ||
version = "2.4.0" | ||
edition = "2018" | ||
edition = "2021" | ||
authors = ["Dragoș Tiselice <[email protected]>"] | ||
homepage = "https://pest-parser.github.io/" | ||
repository = "https://github.com/pest-parser/pest" | ||
|
@@ -26,9 +26,9 @@ const_prec_climber = [] | |
fast-line-col = ["memchr", "bytecount"] | ||
|
||
[dependencies] | ||
ucd-trie = { version = "0.1.1", default-features = false } | ||
serde = { version = "1.0.89", optional = true } | ||
serde_json = { version = "1.0.39", optional = true} | ||
thiserror = { version = "1.0.31", optional = true } | ||
ucd-trie = { version = "0.1.5", default-features = false } | ||
serde = { version = "1.0.145", optional = true } | ||
serde_json = { version = "1.0.85", optional = true} | ||
thiserror = { version = "1.0.37", optional = true } | ||
memchr = { version = "2", optional = true } | ||
bytecount = { version = "0.6", optional = true } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
name = "pest_vm" | ||
description = "pest grammar virtual machine" | ||
version = "2.4.0" | ||
edition = "2018" | ||
edition = "2021" | ||
authors = ["Dragoș Tiselice <[email protected]>"] | ||
homepage = "https://pest-parser.github.io/" | ||
repository = "https://github.com/pest-parser/pest" | ||
|