We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d50dda4 commit 02a19d7Copy full SHA for 02a19d7
.travis.yml
@@ -5,10 +5,9 @@ rust:
5
- stable
6
script: |
7
cargo build --verbose &&
8
- cargo build --all-features --verbose &&
9
cargo test --verbose &&
10
- cargo test --all-features --verbose &&
11
([ $TRAVIS_RUST_VERSION != nightly ] || cargo test --verbose --no-default-features) &&
+ ([ $TRAVIS_RUST_VERSION != nightly ] || cargo test --verbose --features union) &&
12
([ $TRAVIS_RUST_VERSION != nightly ] || cargo bench --verbose bench)
13
notifications:
14
webhooks: http://build.servo.org:54856/travis
Cargo.toml
@@ -12,6 +12,7 @@ documentation = "http://doc.servo.org/smallvec/"
[features]
std = []
15
+union = []
16
default = ["std"]
17
18
[lib]
0 commit comments