renso-code-graph-mcp 1.0.23

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", "a0ea1dc8297c315b9459de772cd594c02f533ee998926fcb60cf42717536f129"),
    ("aarch64-unknown-linux-gnu", "cd05e72fa76885071948d7773c5552feb79911221db6a37fa381bd4c4b3c3b3a"),
    ("x86_64-apple-darwin", "2997e742fcd71970ebeca0245532aeee6bc1f3dc5863e6f77bdd537e6f175cff"),
    ("x86_64-pc-windows-msvc", "1723f6be54ffbe8a67b4cc41df81afb81d5b03ebe40d56b29edd57a63662b342"),
    ("x86_64-unknown-linux-gnu", "6a3c0191c6941352552a7611ee88c1adbf3393e4470958468aaa8672e464db5a"),
];

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