default:
    just --list

# Run tests
test:
    cargo nextest run
    cargo test --doc

# Run mutation tests
mutant:
    cargo mutants

lint:
    cargo clippy

docs:
    cargo doc --no-deps

docs-open:
    cargo doc --no-deps --open

# Run tests and linter
verify: test lint
