
project_dir := justfile_directory()


[private]
default:
    @just --list

# Run all code checks
check:
    cargo check
    cargo clippy -- -D warnings
    cargo fmt --check

# Run tests
test:
    cargo test

# Build debug target
build:
    cargo builda:
