peg 0.6.3

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

script:
  # Rustfmt is often missing on nightly
  - |
      if [ $TRAVIS_RUST_VERSION != "nightly" ]; then
        rustup component add rustfmt
        ./bootstrap.sh
        # Check that src/grammar.rs is updated to match src/grammar.rustpeg
        git diff --exit-code
      fi
  - cargo test --all
  - (test $TRAVIS_RUST_VERSION != "nightly" || cargo bench)