renso-code-graph-mcp 1.1.8

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", "31df62d28447280f51dd3312a24434272636316b3eb0f7ea9330b60cfaa4fec4"),
    ("aarch64-unknown-linux-gnu", "f373d1f6ed74021c99c257b6b680b826f512b9b0208c2a5b7a525a4167f87080"),
    ("x86_64-apple-darwin", "7e692089bee09a6434e50b56f60e0938cfb8a53dbec315ed0a783ef2203ad02d"),
    ("x86_64-pc-windows-msvc", "925530d33b6033b3321628643e91bd399a885d4660ee29b4462d9b5499a968bd"),
    ("x86_64-unknown-linux-gnu", "8906da47ff4ce2dc77229851fbcf7544d9269203df904f61fe8493f67db5817a"),
];

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