forked from pest-parser/ast
-
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.
- Loading branch information
Tomas Tauber
committed
Apr 9, 2023
1 parent
164bc25
commit 4ffce0a
Showing
9 changed files
with
31 additions
and
24 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 |
---|---|---|
|
@@ -3,18 +3,19 @@ members = ["derive"] | |
|
||
[package] | ||
name = "from-pest" | ||
version = "0.3.1" | ||
version = "0.3.2" | ||
edition = "2021" | ||
authors = ["cad97 <[email protected]>"] | ||
readme = "./README.md" | ||
description = "Convert from a pest grammar to a typed AST" | ||
license = "MIT" | ||
license = "MIT/Apache-2.0" | ||
repository = "https://github.com/pest-parser/pest_deconstruct" | ||
|
||
[dependencies] | ||
void = "1.0" | ||
pest = "2.0" | ||
pest = "2.5" | ||
log = "0.4.6" | ||
|
||
[dev-dependencies] | ||
pest_derive = "2.0" | ||
pest_derive = "2.5" | ||
pest-ast = { version = "0.3", path = "derive" } |
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,9 +1,10 @@ | ||
[package] | ||
name = "pest-ast" | ||
version = "0.3.3" | ||
version = "0.3.4" | ||
edition = "2021" | ||
authors = ["cad97 <[email protected]>"] | ||
description = "Derive to convert from pest parse tree to typed syntax tree" | ||
license = "MIT" | ||
license = "MIT/Apache-2.0" | ||
readme = "./README.md" | ||
repository = "https://github.com/pest-parser/pest_deconstruct" | ||
|
||
|
@@ -19,8 +20,8 @@ itertools = "0.7" | |
|
||
[dev-dependencies] | ||
from-pest = { version = "0.3", path = ".." } | ||
pest = "2.0" | ||
pest_derive = "2.0" | ||
pest = "2.5" | ||
pest_derive = "2.5" | ||
|
||
[features] | ||
default = ["trace"] | ||
|
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,4 +1,4 @@ | ||
#![allow(bad_style)] | ||
#![allow(bad_style, dead_code)] | ||
|
||
#[macro_use] | ||
extern crate pest_derive; | ||
|
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,4 +1,4 @@ | ||
#![allow(bad_style)] | ||
#![allow(bad_style, dead_code)] | ||
|
||
#[macro_use] | ||
extern crate pest_derive; | ||
|
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
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