Parsing Expression Grammars in Rust

This is a simple parser generator based on the Parsing Expression Grammar formalism.

Usage

Run peg input_file.rustpeg to compile a grammar and generate Rust code on stdout.

Grammar Syntax

```

[pub]

rule_name -> type = expression ```

If a rule is marked with #[pub], the generated module has a public function that begins parsing at that rule.

Match actions can extract data from the match using these variables:

name -> String = [a-zA-Z0-9_]+ { match_str.to_string() }

number -> int = [0-9]+ { from_str::<uint>(match_str).unwrap() }

To Do