mirror of
https://github.com/pezkuwichain/merkle-mountain-range.git
synced 2026-04-26 01:17:55 +00:00
c1211d2ca9
The MMR code is copy from https://github.com/nervosnetwork/ckb/pull/1598
16 lines
213 B
Makefile
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
|