1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
# skymath task runner. Run `just` to list recipes.
# Show available recipes
default:
@just --list
# Build the crate
build:
cargo build
# Run the test suite
test:
cargo test
# Lint with clippy (warnings treated as errors)
lint:
cargo clippy --all-targets --all-features -- -D warnings
# Format all sources
fmt:
cargo fmt
# Check formatting without writing changes
fmt-check:
cargo fmt --check
# Type/borrow-check without producing a binary
check:
cargo check --all-targets
# Build the API docs
doc:
cargo doc --no-deps
# Full local gate: format check, lint, test
verify: fmt-check lint test
# Remove build artifacts
clean:
cargo clean