cssparser 0.25.9

Rust implementation of CSS Syntax Level 3
Documentation
language: rust
rust:
  - nightly
  - beta
  - stable
  - 1.31.0

script:
  - cargo build --verbose
  - cargo test --verbose
  - cargo doc --verbose
  - cargo test --features heapsize
  - cargo test --features dummy_match_byte
  - if [ "$TRAVIS_RUST_VERSION" == "nightly" ]; then cargo test --features bench; fi
  - if [ "$TRAVIS_RUST_VERSION" == "nightly" ]; then cargo test --features "bench dummy_match_byte"; fi
  - cd macros && cargo build --verbose