ref-cast 0.2.6

Safely cast &T to &U where the struct U contains a single field of type T.
Documentation
sudo: false
language: rust

matrix:
  include:
    - rust: 1.31.0
    - rust: stable
    - rust: beta
    - rust: nightly

script:
  - |
      case "$TRAVIS_RUST_VERSION" in
          nightly)
              cargo test
              cargo clean
              cargo test --manifest-path compiletest/Cargo.toml
              ;;
          *)
              cargo test
              ;;
      esac