ructe 0.2.0

Rust Compiled Templates, a build-time template system
Documentation
language: rust
cache: cargo
before_script:
- cargo update || true
- cargo install rustfmt || true
rust:
  - stable
  - beta
  - nightly
matrix:
  allow_failures:
    - rust: nightly
script:
- |
  PATH=${HOME}/.cargo/bin:$PATH cargo fmt -- --write-mode=diff &&
  cargo build &&
  cargo test &&
  cd examples/simple && cargo test