1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
test: cargo test --verbose .PHONY: test doc: rustdoc -o docs src/lib.rs .PHONY: doc build: cargo build --verbose .PHONY: build clean: cargo clean .PHONY: clean example: cargo run --example colors .PHONY: example