We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 95da8fe commit bfcd391Copy full SHA for bfcd391
.travis.yml
@@ -18,7 +18,7 @@ matrix:
18
before_script:
19
- rustup target add $TARGET
20
script:
21
- - cargo build --verbose --target $TARGET --no-default-features --features rand,serde
+ - cargo build --verbose --target $TARGET --no-default-features --features libm,rand,serde
22
- name: "rustfmt"
23
rust: 1.31.0
24
ci/test_full.sh
@@ -5,8 +5,8 @@ set -ex
5
echo Testing num-complex on rustc ${TRAVIS_RUST_VERSION}
6
7
case "$TRAVIS_RUST_VERSION" in
8
- 1.31.*) FEATURES="serde" ;;
9
- *) FEATURES="serde rand" ;;
+ 1.31.*) FEATURES="libm serde" ;;
+ *) FEATURES="libm serde rand" ;;
10
esac
11
12
# num-complex should build and test everywhere.
0 commit comments