default:
@just --list
help:
@just --list
build:
cargo build
check:
cargo clippy --workspace -- -D warnings
cargo fmt --all -- --check
fmt:
cargo fmt --all
test:
cargo test --workspace
lint:
cargo run -q -- lint
ci: check test
docs:
cargo run -- serve
docs-build:
cargo run -- build
docs-serve:
cargo run -- serve --no-build