mmdb 2.1.2

A modern LSM-Tree storage engine in pure Rust
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