renso-code-graph-mcp 1.1.1

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", "7d90463a4026892156e0cc22516cb4a90d34f416e6613e94be7baaab9d356df4"),
    ("aarch64-unknown-linux-gnu", "9ff22849082ecac8c663ea63d2679650fae0391e441a1c47c7b0c21cbeba71a7"),
    ("x86_64-apple-darwin", "4816f22b931f6de59c16f2055773024fa756fcc7aa65cd5a173da599b405ccde"),
    ("x86_64-pc-windows-msvc", "dc89f6f830f741d6f8c5f6b81aaff87ebbd12e45900f09ae6331b72744ad7725"),
    ("x86_64-unknown-linux-gnu", "87a7e67d40b63824e3fa972bf905ebc01ba743f4c88513c23d44945543bbd834"),
];

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