mmdb 3.0.0

The storage engine behind vsdb — a pure-Rust LSM-Tree key-value store
Documentation
.PHONY: all fmt lint check test bench clean

all: fmt lint test

fmt:
	cargo fmt

lint:
	cargo clippy --all-targets -- -D warnings
	cargo clippy --all-targets --tests -- -D warnings

check:
	cargo check
	cargo check --tests

test:
	cargo test
	cargo test --release

bench:
	cargo bench

clean:
	cargo clean