renso-code-graph-mcp 1.3.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", "14c6bb8ca39e5a586cdea5a266fb7c0d033520516743bac5d0e21eb9b36882aa"),
    ("aarch64-unknown-linux-gnu", "85c695446a860f3a33514c3ee3dfcd6ed1ddd70697f530b46fd5e0b12c46a011"),
    ("x86_64-apple-darwin", "84b49d8f677abd7df5bd6901a188c647bb4995c06c132d50310d38b756b1e782"),
    ("x86_64-pc-windows-msvc", "f5f6d50cbf0d4ea615bab7f70e2a29d2187f1152ced054019a0aa8da5fdd5cff"),
    ("x86_64-unknown-linux-gnu", "33f98fb5241e071264dd9d25ebe3d1469848263cd17e3151d059fb3eccb42a6c"),
];

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