-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: TL parser and struct generator (#555)
* init tl_parser * init tl parser * support builtin types * support constructor number * single line comment * multi line comment * args parse * pass fields * optional fields * functional combinators * exclamation_point_modifier * shot tx id gen * boxed enum * simplify RawFullAccountState * gen all * use latest block as default route * drop aliases
- Loading branch information
1 parent
08368b6
commit a4392d2
Showing
18 changed files
with
1,589 additions
and
703 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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,6 +1,7 @@ | ||
[workspace] | ||
resolver = "2" | ||
members = [ | ||
"tl_parser", | ||
"tonlibjson-sys", | ||
"tonlibjson-client", | ||
"ton-grpc", | ||
|
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 |
---|---|---|
@@ -0,0 +1,9 @@ | ||
[package] | ||
name = "tl_parser" | ||
version = "0.1.0" | ||
edition = "2021" | ||
authors = ["Andrei Kostylev <[email protected]>"] | ||
|
||
[dependencies] | ||
anyhow = { workspace = true } | ||
nom = "7.1.3" |
Oops, something went wrong.