13 lines
116 B
Makefile
13 lines
116 B
Makefile
test:
|
|
cargo test
|
|
|
|
coverage:
|
|
cargo tarpaulin
|
|
|
|
clean:
|
|
cargo clean
|
|
|
|
format:
|
|
cargo fmt
|
|
|
|
.PHONY: clean test coverage
|