renso-code-graph-mcp 1.0.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", "9ab7b78aa9c36168081720ee41413b6c4823ba8497aa868f712b155a6ab488df"),
    ("aarch64-unknown-linux-gnu", "03a1f752b84c86acd956fb28f6550aec03e3185b743e989d1136b1f5f8cc7d0e"),
    ("x86_64-apple-darwin", "692480c83511c61c4db7fe4d095f6a7cd6212720843129cd233b6706569ceb04"),
    ("x86_64-pc-windows-msvc", "945e880126eb6b1b4d940578a6c092ff94c86aa89d7de7cce58d8fb0ac2d4735"),
    ("x86_64-unknown-linux-gnu", "e6c888304c413eaf1aadb0462acc6fbf74132bf7a31f95689b0c6cc5347b894d"),
];

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