1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
alias b := build build: cargo build --release --no-default-features alias t := test test: cargo test --release --no-default-features alias r := run run: cargo run --release --no-default-features alias c := clean clean: cargo clean