renso-code-graph-mcp 1.1.9

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", "8a31f92333e5c53ad3b8b9d713ee1ac020bc66b8a4ec8cd659224836783f5139"),
    ("aarch64-unknown-linux-gnu", "7c5af8983478618c2dc2be07371ac378e80d8456482a570c348a8ec1c4d2b33c"),
    ("x86_64-apple-darwin", "30e22cec89229ae87875a29f7143737c85331e95be647033c99bcec8154b4007"),
    ("x86_64-pc-windows-msvc", "75a2f487bda791ddc93a0185e4ef6efad52086366aa622752dc5290290698a4c"),
    ("x86_64-unknown-linux-gnu", "1a3dae7fc32422354f44061aaeb83b6375b5908bc2a45e82556b73d7ace42221"),
];

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