1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
.PHONY: build test integration-test lint clean build: cargo build --release test: cargo test integration-test: cargo test -- --ignored --nocapture lint: cargo clippy -- -D warnings cargo fmt --check clean: cargo clean