entropy-map 1.1.0

Ultra-low latency hash map using minimal perfect hash functions and compact encoding of values, minimizing memory footprint and storage size for efficient data retrieval.
Documentation
.PHONY: clean build test check-fmt fmt lint

clean:
	rm -rf ./target/

build:
	cargo build --release

test:
	cargo test

check-fmt:
	cargo fmt -- --check

fmt:
	cargo fmt

lint:
	cargo clippy
	cargo check --workspace --benches