1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
.PHONY: fmt fmt-check lint test check run fmt: cargo fmt --all fmt-check: cargo fmt --all -- --check lint: cargo clippy --all-targets --all-features -- -D warnings test: cargo test --all-targets check: fmt-check lint test run: cargo run -- $(ARGS)