Skip to content

Latest commit

 

History

History
16 lines (11 loc) · 465 Bytes

File metadata and controls

16 lines (11 loc) · 465 Bytes

CLAUDE.md

Build

cargo build --release                       # all binaries (mcp is a default feature)
cargo build --release --no-default-features  # core only (no MCP server)

Version bumps

The version in Cargo.toml must match the git tag. When bumping the version:

  1. Update version in Cargo.toml
  2. Tag the commit: git tag v<VERSION>

All binaries read the version from Cargo.toml at compile time via env!("CARGO_PKG_VERSION").