1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
default: @just --list # build the library build: cargo build # detect linting problems. lint: cargo fmt --all -- --check cargo clippy # fix linting problems. fix: cargo fmt cargo clippy --fix --allow-dirty --allow-staged test: cargo test --all