[go: up one dir, main page]

peg 0.4.0

A parser generator built on the Parsing Expression Grammar (PEG) formalism.
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))