1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
all: test .PHONY: run run: cargo run $(ARGS) .PHONY: test test: cargo test --verbose -- --nocapture .PHONY: publish publish: @cargo publish .PHONY: example example: cargo run --example main