Files
crank/justfile
T
2026-03-25 12:20:42 +03:00

21 lines
290 B
Makefile

fmt:
cargo fmt --all
fmt-check:
cargo fmt --all --check
check:
cargo check --workspace
clippy:
cargo clippy --workspace --all-targets --all-features -- -D warnings
test:
cargo test --workspace --all-targets
verify:
just fmt-check
just clippy
just test