renso-code-graph-mcp 1.0.20

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", "3ac2c6a26dc6f41c8e2d2e6aa9292f9266d66eb0b0b948b09202d9a8ffd64b48"),
    ("aarch64-unknown-linux-gnu", "fcd453d96a0906977376e620ecdc159d3abad23d08aa72a795491ffd0322049b"),
    ("x86_64-apple-darwin", "5ef53d4ef9ed636abdb33dd2b67ce66636394ee6a3b916f553271f951886d7d5"),
    ("x86_64-pc-windows-msvc", "b4a7486cf7822209829a7ee455a094b564e7641f1208d2d5ccd2343da0f12c24"),
    ("x86_64-unknown-linux-gnu", "644a3fc48404d735be34ca7d8ca40e2e0940745a4f39debaaab9d340bd9122e7"),
];

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