renso-code-graph-mcp 1.0.19

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", "02dbcaefe674011147e3ef9f28b3e0485722a3fa39e237da78e6377ffb8df73f"),
    ("aarch64-unknown-linux-gnu", "680d30bbfe834a317feb7de1efaf5b1cb4dbf77a22b90ef41296b3ad15842e3c"),
    ("x86_64-apple-darwin", "3042bde451547269595ceb9bfcd72931cab793c3f09279919bd5946e176c3e28"),
    ("x86_64-pc-windows-msvc", "842ad09e68525255794778b036aa81fcbf86f5b20c76937ecfe14c608d869ffc"),
    ("x86_64-unknown-linux-gnu", "a8a6e7854d61e058d0edf60b7f790384107d0db5aabdef14216a3091d64ad485"),
];

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