[go: up one dir, main page]

stackvector 1.0.3

StackVec: vector-like facade for stack-allocated arrays.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
language: rust
rust:
  - 1.26.0
  - nightly
  - beta
  - stable

# Bugs in issue 5 on nightly and beta on Travis, not reproducing on a local
# machine.
matrix:
  allow_failures:
    - rust: nightly
    - rust: beta

script: |
  cargo build &&
  cargo test &&
  ([ $TRAVIS_RUST_VERSION != nightly ] || cargo check --no-default-features)