renso-code-graph-mcp 1.0.13

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", "d0bda880a8e856a77176114d756e55f2fc277d2676793660bc36657bd9130c52"),
    ("aarch64-unknown-linux-gnu", "98d1a14e790fc6d65506fccb2b60d86aca710baef0158eeccba894d836da5ec6"),
    ("x86_64-apple-darwin", "8ccd00fec3fb799d109c456bdc1fbb647d2b879af488e1bdae5212066e937ad6"),
    ("x86_64-pc-windows-msvc", "c9d0e78dfe12487630f5600c791ba0fb3aa75120270e61c6a053336d4b422de2"),
    ("x86_64-unknown-linux-gnu", "ac55551546c343f7887daef5946833205bd538d470668e04b3b4d8ca7de9cff9"),
];

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