1
0
Fork
You've already forked parser_tools
0
No description
  • Rust 100%
2026年05月16日 01:24:59 +02:00
src rework ts 2026年05月16日 01:24:59 +02:00
.gitignore init 2026年03月28日 05:25:46 +01:00
Cargo.lock make MIRI happy - V2 2026年05月16日 01:22:54 +02:00
Cargo.toml make MIRI happy - V2 2026年05月16日 01:22:54 +02:00
LICENSE-APACHE LICENSING YAY 2026年03月28日 05:32:36 +01:00
LICENSE-MIT LICENSING YAY 2026年03月28日 05:32:36 +01:00
README.md LICENSING YAY 2026年03月28日 05:32:36 +01:00

Parser Tools

Tools for writing parsers in Rust with this pipeline:

&str
|> .chars()
|> PeekableChars (provided by this crate)
|> Lexer/Tokenizer (write your own)
|> Spanify (provided by this crate)
|> Token filterer (remove whitespace tokens; optional, write your own)
|> Parser (write your own)
...