renso-code-graph-mcp 1.1.10

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", "4b569c5870dd15332433fa504898f47a3233a102dd7e9826ea2080fce54b1e93"),
    ("aarch64-unknown-linux-gnu", "ecc23be9a24590376a1abb7c2b7178d2d154db46d40f8c06396581d0465385ea"),
    ("x86_64-apple-darwin", "d651cfc1bf240e0cf015439736968ef997a2bfc405ffc66fa67cd10c2f1da4e0"),
    ("x86_64-pc-windows-msvc", "abd95c2c00b50fea093220d9f21fe74bd3a4ebe0e874f6a75ee670cff1007fb0"),
    ("x86_64-unknown-linux-gnu", "8fd10f655109a22b6333295c4cceee0b07a5bd06ecd92ca1e0b8a6f9f6402ffa"),
];

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