tinyvec 0.3.2

Just, really the littlest Vec you could need. So smol.
Documentation

git:
  quiet: true

language: rust

cache:
  cargo

rust:
  - 1.36.0
  - stable

matrix:
  include:
    - { os: osx, rust: 1.36.0 }
    - { os: linux, rust: 1.36.0 }
    - { os: linux, rust: stable }
    - { os: linux, rust: nightly }

script:
  - cargo build
  - cargo test
  - cargo build --features="alloc"
  - cargo test --features="alloc"
  - |

    if [[ $TRAVIS_RUST_VERSION == "nightly" ]]
    then
      cargo build --all-features
      cargo test --all-features
    fi