renso-code-graph-mcp 1.0.7

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", "263f83382a861ddfd70f8ad45b783a84ed31e431cac429dde7d0a76226974590"),
    ("aarch64-unknown-linux-gnu", "8bca56f076f243d034b7e712a6b530c00f4f4fbc445ce4c62119499311f77a5c"),
    ("x86_64-apple-darwin", "366f0bf29f084d91c1d15fd8ebef94977fdf0f5140c8132fedc3069adb52a368"),
    ("x86_64-pc-windows-msvc", "89731507faac3053c5e97604278e4a71b23300ca0cf6dbbf6f2e3725c1a9fcd3"),
    ("x86_64-unknown-linux-gnu", "607ea67f093908690f66a78ced345f05df1e41d3aaff2748d9cf237b0ebd3dcf"),
];

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