1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
BASE_DIR=$(CURDIR) .PHONY: build format lint test audit: cargo audit build: cargo build --release format: cargo fmt --all lint: cargo clippy --all-targets --all-features -- -D warnings test: format cargo test --verbose