Make tokio1 serde1 default features

This commit is contained in:
Tim Kuehn
2019-08-08 22:06:09 -07:00
parent 41c1aafaf7
commit f8ba7d9f4e
5 changed files with 12 additions and 6 deletions

View File

@@ -89,12 +89,12 @@ if [ "$?" == 0 ]; then
exit 1
fi
try_run "Building ... " cargo build --color=always
try_run "Testing ... " cargo test --color=always
try_run "Building ... " cargo build --no-default-features --color=always
try_run "Testing ... " cargo test --no-default-features --color=always
try_run "Testing with all features enabled ... " cargo test --all-features --color=always
for EXAMPLE in $(cargo run --example 2>&1 | grep ' ' | awk '{print $1}')
do
try_run "Running example \"$EXAMPLE\" ... " cargo run --all-features --example $EXAMPLE
try_run "Running example \"$EXAMPLE\" ... " cargo run --example $EXAMPLE
done
fi