renso-code-graph-mcp 1.0.21

MCP stdio server exposing code_graph tools. Installs the prebuilt `code_graph-mcp` binary from GitHub Releases.
//! Release manifest for the `code_graph-mcp` stub crate.
//!
//! Templated by `.github/workflows/release.yml` between
//! `make-manifest` and `publish-cargo`. See
//! `crates/code_graph/src/manifest.rs` for the design rationale.

/// Base URL for the GitHub Release that hosts the per-platform
/// binary archives.
pub const RELEASE_URL_BASE: &str = "https://github.com/Renso-AI/code-graph-dist/releases/download";

/// File-name stem of the prebuilt archive.
pub const ARCHIVE_PREFIX: &str = "code_graph-mcp";

/// The binary inside the archive.
pub const BINARY_NAME: &str = "code_graph-mcp";

/// SHA256 hex of each per-target archive, keyed by Rust target triple.
/// Templated at release time. An empty slice triggers placeholder mode.
pub const SHA256_BY_TARGET: &[(&str, &str)] = &[
    ("aarch64-apple-darwin", "1bd62be11f78b328f63df586f425bc2ec8042645c47cb78aab86e5c55b905e82"),
    ("aarch64-unknown-linux-gnu", "03b28f5b6f93fbdb1664f394b8d6147a9ce08ab39c38158d27c3d59e2fcac942"),
    ("x86_64-apple-darwin", "5180ddb8beaa449b226832db2df174a61ab25a26c85397cf883618b50fadd5ff"),
    ("x86_64-pc-windows-msvc", "8bf37ac8959bf49632eb70addf05ea81ee2c3dc1b5611678573d1845321256b6"),
    ("x86_64-unknown-linux-gnu", "429c67840cefb11501d06c60ade47bb2c23409a987473d852f6a84bb9eac79ba"),
];

/// Optional minisign public key (base64). Empty disables verification.
pub const MINISIGN_PUBKEY: &str = "";