there are no longer any default features

This commit is contained in:
Lokathor 2019-09-05 08:32:05 -06:00
parent a636858cdd
commit 2e3ba17f9d
2 changed files with 1 additions and 3 deletions

View file

@ -49,8 +49,6 @@ jobs:
displayName: "Install rust wasm target"
- script: cargo build --target wasm32-unknown-unknown
displayName: "Build for wasm"
- script: cargo build --target wasm32-unknown-unknown --no-default-features
displayName: "Build for wasm (no default features)"
variables:
TOOLCHAIN: nightly

View file

@ -3,7 +3,7 @@
set -ex
TARGET=$1
CMD="cargo test --all --no-default-features --target $TARGET"
CMD="cargo test --all --target $TARGET"
$CMD
$CMD --release