cornerstore 0.1.0

An in-memory key/value store for read-heavy workloads with expireable items.
Documentation
all: build

test:
	cargo test
	cargo test --features safe-input

clean:
	cargo clean

release: target/release/libcornerstore.so

build: target/debug/libcornerstore.so
	cargo clippy

target/debug/libcornerstore.so: src/lib.rs Cargo.toml
	cargo build --target x86_64-unknown-linux-gnu

target/release/libcornerstore.so: src/lib.rs Cargo.toml
	cargo build --release --target x86_64-unknown-linux-gnu