default: check

check:
    cargo fmt --check
    cargo clippy -- -D warnings
    cargo test

fmt:
    cargo fmt

build:
    cargo build

test:
    cargo test
