renso-code-graph-mcp 1.0.14

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", "00053150e613e5ac2d18a1ef9bb2c74b226839180a001b33b57bd6b8eb4ae393"),
    ("aarch64-unknown-linux-gnu", "52311f96afaac2dc1a0ad5428c8f7018d643f59c067adb553d55d30782ea45c5"),
    ("x86_64-apple-darwin", "500f5d6c6115b6e0e7152de1998be44feb9cd8403d323816eb69dd5ba32e5024"),
    ("x86_64-pc-windows-msvc", "5ced589133f08e959af50aed6e60145dd05b1b2f0454c376af5faf8fdb5d78f3"),
    ("x86_64-unknown-linux-gnu", "e0322658a619e61eba3ec79ed5c3ee1651f17a11cd27692f1d92a72c339e4202"),
];

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