hashcom-rs 0.2.0

A fast, minimal but yet extensible framework for building and using hash commitment schemes
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
all: lint unit-tests build-release

build-debug:
	cargo build

build-release:
	cargo build --release --all-features

unit-tests:
	cargo test -- --nocapture

lint:
	cargo fmt --all -- --check && cargo clippy -- -D warnings

.PHONY: all build-debug build-release unit-tests lint