1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
# Makefile .PHONY: all build test check format release all: check format test build build: cargo build test: cargo test check: cargo check format: cargo +nightly fmt --all -- --config-path ./rustfmt.toml release: cargo build --release