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
41
42
43
44
45
46
47
48
49
50
51
# batuta justfile - Cross-platform build automation
# Usage: just <recipe>
# Default recipe
default: test
# Build release binary
build:
cargo build --release
# Run all tests
test:
cargo test --all-features
# Run unit tests only (fast)
test-unit:
cargo test --lib
# Lint with clippy
lint:
cargo clippy --all-targets --all-features -- -D warnings
# Format check
fmt:
cargo fmt --all -- --check
# Format fix
fmt-fix:
cargo fmt --all
# Run benchmarks
bench:
cargo bench
# Check compilation
check:
cargo check --all-features
# Run documentation build
doc:
cargo doc --no-deps --all-features
# Security audit
audit:
cargo audit
# Full quality gate
tier2: fmt lint test
# Pre-push gate
tier3: fmt lint test doc audit