.PHONY: build test

build:
	maturin develop --release

test:
	.venv/bin/python -m pytest tests/ -v
