Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

Building

Debug Build

For development, use debug builds (faster compilation, includes debug symbols):

cargo build

The binary will be at target/debug/kakei.

Release Build

For production use or performance testing:

cargo build --release

The binary will be at target/release/kakei.

Build Specific Crate

Build only a specific crate in the workspace:

# Build just the Lisp interpreter
cargo build --package kakei_lisp

# Build the database layer
cargo build --package kakei_database

Build All Workspace Members

cargo build --workspace