threshold 0.2.4

Threshold data structures
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
all: test fmt

test:
	cargo test

fmt:
	rustfmt src/*.rs src/tests/*.rs benches/*

publish: test
	cargo doc
	cargo package
	cargo publish

# `cargo install cargo-travis`
coverage:
	cargo coverage
	open target/kcov/index.html