1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
# just manual: https://github.com/casey/just/#readme _default: @just --list # Runs clippy on the sources check: cargo clippy --locked -- -D warnings # Runs unit tests test: cargo test --locked # Runs the app run: cargo run