1 2 3 4 5 6 7 8 9 10
#!/bin/sh set -e export RUSTFLAGS="-D warnings" for release in "" "--release"; do for subcommand in clippy test doc; do for features in "" "--no-default-features" "--no-default-features --features alloc"; do cargo $subcommand $release $features done done done