devloop 0.1.5

A tool to help with repetitive commands during development.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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", true] # Adding True means it will wait for user to press enter after completion
    r: ["Build release", "cargo build --release"]
    u: ["Run", "cargo run"] # Another good candidate for adding True
    c: ["Clean", "cargo clean"]

# vim:ft=yaml: