All tasks are managed through the justfile. Run just to see available recipes:
just # list all recipes
just check # run fmt, clippy, and tests
just test # run tests (supports extra args: just test -- --nocapture)
just build # build release binary
just fmt # auto-format code
just install # install diecut locallyRun the full check suite:
just checkThis runs cargo fmt --check, cargo clippy -- -D warnings, and cargo test.
The documentation site lives in docs/ and uses pnpm:
just docs # start dev server
just docs-build # build site