1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
.ONESHELL: .PHONY: check clean build fmt clippy test doc check: clean build fmt clippy test doc clean: cargo clean build: cargo build fmt: cargo fmt -- --check clippy: cargo clippy -- --forbid warnings test: cargo test doc: cargo doc