renso-code-graph-mcp 1.1.13

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", "71020ae58ff491de599e1146c0298640fa8f6374fd6d79a1e990da143889f6dc"),
    ("aarch64-unknown-linux-gnu", "77a8d8144b506e48f117465cdd6a959a2122918812f4d14648ebc198c4ce207b"),
    ("x86_64-apple-darwin", "f409ce52624f69865703cef555fb1b6058ae421f9bf2cdab20d2b19c36f67076"),
    ("x86_64-pc-windows-msvc", "d58f659767516febfbff8090deb9102b997f5a8969588e92f11838b530d13f2c"),
    ("x86_64-unknown-linux-gnu", "3a7c4876c01e69a71830ec2047fe7fb49270c75abd072534d3c0e07a69c48b4e"),
];

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