ckb-merkle-mountain-range 0.5.2

A generalized merkle mountain range implementation
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
default: ci

ci: fmt check-no-std 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

check-no-std:
	cargo check --all --no-default-features