arrayvec 0.3.3

A vector with a fixed capacity, it can be stored on the stack too.
Documentation
language: rust
sudo: false
matrix:
  include:
    - rust: stable
    - rust: nightly
script:
  - |
      cargo build --verbose --features "$FEATURES"
      cargo test --verbose --features "$FEATURES"
      cargo test --verbose --manifest-path=nodrop/Cargo.toml
      cargo bench --verbose --features "$FEATURES" -- --test
      cargo bench --verbose --manifest-path=nodrop/Cargo.toml -- --test
      cargo doc --verbose --features "$FEATURES"