renso-code-graph-mcp 1.1.7

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", "521f84cad1d5f39fd46c5620fcb729711a57a82048400ebf75698880d187ce28"),
    ("aarch64-unknown-linux-gnu", "64c58e270bf6307c862a84b733ef26a94a7bead44c7f6bc95d5d218885980667"),
    ("x86_64-apple-darwin", "2975586f659fe1a281c619630c911fb42e19e801f6b32b844538091c65c58048"),
    ("x86_64-pc-windows-msvc", "c7178d2e4f0c5cdfe5c5d81e24af6f92cd0234522a7189e74b600fe6933e39b2"),
    ("x86_64-unknown-linux-gnu", "a1ad84b16f53f1227bceab322b37cb4467c6a09edceb78dce9c4f662e5d906fb"),
];

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