arrayvec 0.1.1

A vector with a fixed capacity.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
language: rust
sudo: false
matrix:
  include:
    - rust: stable
    - rust: nightly
script:
  - |
      cargo build --verbose --features "$FEATURES"
      cargo test --verbose --features "$FEATURES"
      cargo bench --verbose --features "$FEATURES" -- --test
      cargo doc --verbose --features "$FEATURES"