renso-code-graph-mcp 1.1.0

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", "c2e304598e74f41e1255a3741e823a5f4083b342c1ac9165220504c5eb729412"),
    ("aarch64-unknown-linux-gnu", "3ec2a6b1868ef51c241588ff7724e48b2748848cca7837aeac78e8c4a8fcc485"),
    ("x86_64-apple-darwin", "45dcad3234dc04329948fbedb524267970f55b0f6cc7c329ee0aaee43fcf7e60"),
    ("x86_64-pc-windows-msvc", "2112d2eaede366cbf133f7400e10717b6c36a59901ca14ab4a323bc4c433388b"),
    ("x86_64-unknown-linux-gnu", "93bb59b641a6a6aa01be408ae231058c83a381fb7749272e4ab07c4c2eb3e860"),
];

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