[go: up one dir, main page]

peg 0.5.7

A simple Parsing Expression Grammar (PEG) parser generator.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
language: rust
rust:
    - stable
    - beta
    - nightly

script:
  - ./bootstrap.sh
  - git diff --exit-code # Check that src/grammar.rs is updated to match src/grammar.rustpeg
  - cargo test
  - (cd peg-tests && cargo test)
  - (test $TRAVIS_RUST_VERSION != "nightly" || (cd peg-syntax-ext && cargo test && cargo bench))