renso-code-graph-mcp 1.0.26

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", "b1ea99271ac1f44ed461691dc647af3ad1db26f9b6674fae61758b17f582ad33"),
    ("aarch64-unknown-linux-gnu", "2dbcfcf219112450805bd71bfae46a4b94ced08d9fe056c8ea6639e1edb65f38"),
    ("x86_64-apple-darwin", "ea93e55941bc551c6a3f49b19a30775502c1c8205c291211b5d9072aa51c0aa1"),
    ("x86_64-pc-windows-msvc", "0c6f909465696f317da92b03f080f00749f59b625e5af6806e53746f807bb3a8"),
    ("x86_64-unknown-linux-gnu", "32e197218a3d1c3c09a6e180128d3bad0b6734e8665b13d56dc3d43a4237d767"),
];

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