renso-code-graph-mcp 1.0.12

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", "0833b793b8ffb2981ea5a2297854628197be074698f4f4d1e38ae3e0231345ce"),
    ("aarch64-unknown-linux-gnu", "ccd85622e24085db4c2ef3dbe655c51bc55cd672994729536d5a943ab7d62bb8"),
    ("x86_64-apple-darwin", "6fa1b3df1117bc342a474225334b439408b9a003dc2dc80e40fbf18b5ef14f57"),
    ("x86_64-pc-windows-msvc", "05269ce58a93a5e942cd672406e1a58c537b9429a6e0078251df8f82ddfd3841"),
    ("x86_64-unknown-linux-gnu", "ea1e8ed3eace83ac0f9a166da0e556d4f5fc480c2b3f3c709966ba529fac077e"),
];

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