#!/usr/bin/env bash set -euxo pipefail cargo install --git https://github.com/c410-f3r/rust-tools --force rt='rust-tools --template you-rust' export CARGO_TARGET_DIR="$($rt target-dir)" export RUST_BACKTRACE=1 export RUSTFLAGS="$($rt rust-flags -Aunstable_features)" cargo clippy -- -D warnings $rt rustfmt $rt test-with-features . $rt test-with-features . alloc $rt test-with-features . arrayvec $rt test-with-features . serde $rt test-with-features . smallvec $rt test-with-features . std $rt test-with-features . tinyvec