renso-code-graph-mcp 1.1.11

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", "54906140d4757736b0844e260764c396b2bd7b8913be502ea044d705603900cd"),
    ("aarch64-unknown-linux-gnu", "c36cce884528955f76c5d9a87cc4bb176700016aa8cc2146b14f77c40c39fea0"),
    ("x86_64-apple-darwin", "13c3d3cc2af14c2d46e22b4c07751989ddb59627d46993736f99840a95d1e384"),
    ("x86_64-pc-windows-msvc", "b338f566255df3c5668f70b88219294f5485ba20e7c22e62f8e933480e31845e"),
    ("x86_64-unknown-linux-gnu", "58a342be73f19d5d8caff49fff10ed94598c054e073b368b34deeba29a2f6590"),
];

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