mmdb 2.0.0

A modern LSM-Tree storage engine in pure Rust
Documentation
.PHONY: all fmt lint check test clean

all: fmt lint check 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

clean:
	cargo clean