renso-code-graph-mcp 1.1.3

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", "edc16cfe6a051051407746210ee4c1aa5f29dd28f30d96a0aa40f31be507a8d2"),
    ("aarch64-unknown-linux-gnu", "f651130499fb9d47b6a29843fe3143ff5849949adab4fd891d1c7e42630aaf76"),
    ("x86_64-apple-darwin", "e3507f1b46862e897d3d0fd6d2bc5ca55e670e77cd01f9e1809d261640b2797c"),
    ("x86_64-pc-windows-msvc", "03ba8ebfb1b7d9a072c437c393a8b8318707426c94923f2b4e4586930fee431c"),
    ("x86_64-unknown-linux-gnu", "fe48e7f4c23dbdf68cea188a7956614d22f21d2a9c1b7d4bbd2912efab804966"),
];

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