test:
	cargo test

ntest:
	cargo nextest run

build:
	cargo build

build-release:
	cargo build --release

test-watch:
	bacon test

ntest-watch:
	bacon nextest

test-all:
	cargo test -- --include-ignored

coverage:
	cargo llvm-cov test --html --open

coverage-all:
	cargo llvm-cov test --html --open -- --include-ignored
