renso-code-graph-mcp 1.0.17

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", "51eb92c156a789e45ca092c648d238c8fe171239f4028beab11cc39b6198e335"),
    ("aarch64-unknown-linux-gnu", "e09fa96008d4983e3d5d9d115d7bd3acb47f3223b886cde125c3890d41128af8"),
    ("x86_64-apple-darwin", "cb7b496529d8fdfadb33a6e3429a40bf3107effb2ab1798b1ef829d9bc877896"),
    ("x86_64-pc-windows-msvc", "07cf021e2f158bf690af732dc2d35fac488c436137c3ee545821449e1f420197"),
    ("x86_64-unknown-linux-gnu", "9ad4f033ee4bcd7fde24cb59cb64564cdfef5abd608967095ea676c5eea5cb8b"),
];

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