tasks: # Will be re-ran every time you press Enter
- ["Clippy", "cargo clippy -q"]
reminders: "Don't forget to format!" # Printed at the end
actions: # Q to Quit
f: ["Format", "cargo fmt"]
t: ["Test", "cargo test -q -- -q"]
b: ["Benchmark", "cargo bench -q -- -q; read"]
r: ["Build release", "cargo build --release"]
u: ["Run", "te 'cargo run'"]
c: ["Clean", "cargo clean"]
# vim:ft=yaml: