renso-code-graph-mcp 1.0.6

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", "f0aa72b0935df71d24237c60b1fc9122e2088c00ad3d3fe4b54b49694d9ddf27"),
    ("aarch64-unknown-linux-gnu", "a34424826b8a367403513e06d3cd6259f632b633697724591239eff89b5ae751"),
    ("x86_64-apple-darwin", "285671482d0541e69076df27e9f7bdba4093473e970386ff2c9ac348d5939552"),
    ("x86_64-pc-windows-msvc", "fa21b657629c641600496bc1531167f922adecbc7dc2faff4fec040147298ccc"),
    ("x86_64-unknown-linux-gnu", "30eaa1237e696549614639409a0926a4d0e2aefb6dc92cda8ae336e72d6adf4a"),
];

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