TEST := xxx

default: test

build:
	cargo build

test_one:
	cargo test -- --test $(TEST)

test:
	cargo test
