cargo build --release # all binaries (mcp is a default feature)
cargo build --release --no-default-features # core only (no MCP server)The version in Cargo.toml must match the git tag. When bumping the version:
- Update
versioninCargo.toml - Tag the commit:
git tag v<VERSION>
All binaries read the version from Cargo.toml at compile time via env!("CARGO_PKG_VERSION").