1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
.PHONY: clean build test check-fmt fmt lint clean: rm -rf ./target/ build: cargo build --release test: cargo test check-fmt: cargo fmt -- --check fmt: cargo fmt lint: cargo clippy cargo check --workspace --benches