renso-code-graph-mcp 1.0.25

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", "05e4e37a5dbfbb7e2b9e933b0808bcee84ff5b001d230165a184032dfe320624"),
    ("aarch64-unknown-linux-gnu", "c031c6587c9a7dcc0e28a1f4972f345c2c6e4811c4dc1910bcf7d551a07b9104"),
    ("x86_64-apple-darwin", "9c55c3d9867d29228e97ba982ff740691aeaca4fd61339a725b7a1385c95c782"),
    ("x86_64-pc-windows-msvc", "c64345f0857e0e46c40b77728746cb27a5c387b00f67dcb05ac4848493f173ef"),
    ("x86_64-unknown-linux-gnu", "1ad7743bb8982dc8d2928e1d25d4e621599de607f4a6b339ef1d7e99544abcf5"),
];

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