negentropy 0.2.0

Rust implementation of the negentropy set-reconcilliation protocol.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
precommit:
	cargo fmt --all -- --config format_code_in_doc_comments=true
	cargo clippy && cargo clippy --no-default-features
	cargo test && cargo test --no-default-features

graph:
	cargo flamegraph --release --example bench -o bench-baseline.svg

clean:
	cargo clean

loc:
	@echo "--- Counting lines of .rs files (LOC):" && find src/ -type f -name "*.rs" -exec cat {} \; | wc -l