fmt:
    cargo fmt --all

test:
    cargo test --all-targets

clippy:
    cargo clippy --all-targets

check:
    just fmt
    just test
    just clippy

run:
    cargo run
