Files
merkle-mountain-range/Makefile
T
2019-09-19 16:26:17 +08:00

16 lines
213 B
Makefile

default: ci
ci: fmt clippy test bench-test
test:
cargo test --all --all-features
bench-test:
cargo bench -- --test
clippy:
cargo clippy --all --all-features --all-targets
fmt:
cargo fmt --all -- --check