renso-code-graph-mcp 1.2.0

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", "f4a0235ff1270d4aa5755d28f112a8ec62df90196fa47baf19d8b24513e7d99c"),
    ("aarch64-unknown-linux-gnu", "9d4d7058d7417997bc3c42cf5807a3c3eca4019365a27c96e3931ad82a699deb"),
    ("x86_64-apple-darwin", "130e4634195ac8837d9792f549da9677888be3e7e1424553a87048f8a57bf090"),
    ("x86_64-pc-windows-msvc", "c28a042f0ab737a301300bb620bbf9d01d0a212d1cbb23ff1ee704bf33d29c8d"),
    ("x86_64-unknown-linux-gnu", "e1190cf8eed4524c781dd3ee1fb1220e482333bf310892ed5d2ba0fef16834e7"),
];

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