peg 0.1.1

A parser generator built on the Parsing Expression Grammar (PEG) formalism.
1
2
3
4
5
6
7
8
#!/bin/bash
set -e

RUST_BACKTRACE=1 target/peg examples/tests.rustpeg > examples/test_grammar.rs
rustc --test examples/tests.rs -o tests
./tests
rm tests