renso-code-graph-mcp 1.1.2

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", "b41dca4f5e554151472c6385eb8dbc11cfdf75fc37602a9e1eb37eaf5c21bed3"),
    ("aarch64-unknown-linux-gnu", "c9d5cc01d37a41f068864d327ca632b941c6485fb3797923cf0cc589c9e2cb9f"),
    ("x86_64-apple-darwin", "43d9c4b1c335e8da26bb9c15f05aed91e5619a042be1d5c7eef9f8856ceadfc2"),
    ("x86_64-pc-windows-msvc", "5e6eaaf6ba0440bbb22a74db63b684bd223e0451acbad54895b3c020c283f1ad"),
    ("x86_64-unknown-linux-gnu", "a5f5f1fa31eafd2dc854acdb19b02fdaf5a372a846be738451793513d56b30c9"),
];

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