Build the Workspace
Compile Everything
cargo build --release
The workspace is split into crates such as parser, planner, and generator. Building in release mode ensures deterministic fingerprints and surfaces linker issues early.
Useful Targets
cargo check -p generatorfor rapid iteration on the CLI.cargo fmt && cargo clippy --all-targetsbefore opening a pull request.cargo test --workspaceto exercise unit suites outside the regression harness.