forked from pest-parser/pest
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
added missing_docs warning etc. and documented the currently undocumented public APIs. added additional explanations in README, updated links, etc. Closes pest-parser#335 Closes pest-parser#299 Closes pest-parser#298 Closes pest-parser#297 Closes pest-parser#185
- Loading branch information
Tomas Tauber
committed
Nov 4, 2022
1 parent
edaef7f
commit b0f62a4
Showing
37 changed files
with
651 additions
and
169 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
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 |
---|---|---|
|
@@ -4,7 +4,7 @@ description = "pest bootstrap script" | |
version = "0.0.0" | ||
edition = "2021" | ||
authors = ["Dragoș Tiselice <[email protected]>"] | ||
homepage = "https://pest-parser.github.io/" | ||
homepage = "https://pest.rs/" | ||
repository = "https://github.com/pest-parser/pest" | ||
documentation = "https://docs.rs/pest" | ||
publish = false | ||
|
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 |
---|---|---|
@@ -1,10 +1,10 @@ | ||
[package] | ||
name = "pest_derive" | ||
description = "pest's derive macro" | ||
version = "2.4.0" | ||
version = "2.4.1" | ||
edition = "2021" | ||
authors = ["Dragoș Tiselice <[email protected]>"] | ||
homepage = "https://pest-parser.github.io/" | ||
homepage = "https://pest.rs/" | ||
repository = "https://github.com/pest-parser/pest" | ||
documentation = "https://docs.rs/pest" | ||
keywords = ["pest", "parser", "peg", "grammar"] | ||
|
@@ -23,5 +23,5 @@ std = ["pest/std", "pest_generator/std"] | |
|
||
[dependencies] | ||
# for tests, included transitively anyway | ||
pest = { path = "../pest", version = "2.4.0", default-features = false } | ||
pest_generator = { path = "../generator", version = "2.4.0", default-features = false } | ||
pest = { path = "../pest", version = "2.4.1", default-features = false } | ||
pest_generator = { path = "../generator", version = "2.4.1", default-features = false } |
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 |
---|---|---|
@@ -1,10 +1,10 @@ | ||
[package] | ||
name = "pest_generator" | ||
description = "pest code generator" | ||
version = "2.4.0" | ||
version = "2.4.1" | ||
edition = "2021" | ||
authors = ["Dragoș Tiselice <[email protected]>"] | ||
homepage = "https://pest-parser.github.io/" | ||
homepage = "https://pest.rs/" | ||
repository = "https://github.com/pest-parser/pest" | ||
documentation = "https://docs.rs/pest" | ||
keywords = ["pest", "generator"] | ||
|
@@ -18,8 +18,8 @@ default = ["std"] | |
std = ["pest/std"] | ||
|
||
[dependencies] | ||
pest = { path = "../pest", version = "2.4.0", default-features = false } | ||
pest_meta = { path = "../meta", version = "2.4.0" } | ||
pest = { path = "../pest", version = "2.4.1", default-features = false } | ||
pest_meta = { path = "../meta", version = "2.4.1" } | ||
proc-macro2 = "1.0" | ||
quote = "1.0" | ||
syn = "1.0" |
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
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 |
---|---|---|
@@ -1,10 +1,10 @@ | ||
[package] | ||
name = "pest_grammars" | ||
description = "pest popular grammar implementations" | ||
version = "2.4.0" | ||
version = "2.4.1" | ||
edition = "2021" | ||
authors = ["Dragoș Tiselice <[email protected]>"] | ||
homepage = "https://pest-parser.github.io/" | ||
homepage = "https://pest.rs/" | ||
repository = "https://github.com/pest-parser/pest" | ||
documentation = "https://docs.rs/pest" | ||
keywords = ["pest", "parser", "peg", "grammar"] | ||
|
@@ -14,8 +14,8 @@ readme = "_README.md" | |
rust-version = "1.56" | ||
|
||
[dependencies] | ||
pest = { path = "../pest", version = "2.4.0" } | ||
pest_derive = { path = "../derive", version = "2.4.0" } | ||
pest = { path = "../pest", version = "2.4.1" } | ||
pest_derive = { path = "../derive", version = "2.4.1" } | ||
|
||
[dev-dependencies] | ||
criterion = "0.3" | ||
|
Oops, something went wrong.