Files
pgherveou 6618463c68 fix
2025-10-08 11:40:08 +00:00

16 lines
280 B
Makefile

.PHONY: format clippy test machete
format:
cargo +nightly fmt --all -- --check
clippy:
cargo clippy --all-features --workspace -- --deny warnings
machete:
cargo install cargo-machete
cargo machete crates
test: format clippy machete
cargo test --workspace -- --nocapture