Parze
Parze is a clean, efficient parser combinator written in Rust.
Example
A parser written with Parze that is capable of parsing all valid Brainfuck code into an AST.
use *;
let bf: = recursive;
Features
- All the usual parser combinator operations
- Operator overloading for simpler parser declaration
- Support for recursive parser definitions
- Custom error types - define your own!
- Prioritised / merged failure for more useful errors
- No dependencies - fast compilation!
-
no_stdsupport
Why Parze?
Parze is largely a personal project. There is currently little reason to use it over a well-established existing parser combinator like pom.
Explicit Form
While Parze uses operator overloading for much of its declarative notation, it is possible (and often useful) to make use of the more explicit method-based notation.
Here is the Brainfuck parser given above, declared in explicit form.
let bf: = recursive;
License
Parze is distributed under either of:
-
Apache License, Version 2.0, (LICENSE-APACHE or http://www.apache.org/licenses/LICENSE-2.0)
-
MIT license (LICENSE-MIT or http://opensource.org/licenses/MIT)
at the disgression of the user.