Add feature "std" to arrayvec: Allow opting out of libstd

This commit is contained in:
bluss
2016-02-06 20:14:43 +01:00
parent 34c45dca50
commit 595db1ffcc
4 changed files with 43 additions and 12 deletions
+1
View File
@@ -19,6 +19,7 @@ branches:
script:
- |
([ ! -z "$NODROP_FEATURES" ] || cargo build --verbose --features "$FEATURES") &&
([ "$NODEFAULT" != 1 ] || cargo build --verbose --no-default-features) &&
([ ! -z "$NODROP_FEATURES" ] || cargo test --verbose --features "$FEATURES") &&
([ ! -z "$NODROP_FEATURES" ] || cargo test --release --verbose --features "$FEATURES") &&
([ ! -z "$NODROP_FEATURES" ] || cargo bench --verbose --features "$FEATURES" -- --test) &&