renso-code-graph-mcp 1.0.27

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", "49bd256871b39961282dc657601ae5905d22a8a873d0648bcb555c346f62bd68"),
    ("aarch64-unknown-linux-gnu", "dffa493f04ee7c26023ede7ba225dfc4e0e03cfe4c45121511b25c315942aaa4"),
    ("x86_64-apple-darwin", "9a1ea7cd7e97e7027dab2b2c16cc99308948ceb9aca748c1d232816d687c9ba0"),
    ("x86_64-pc-windows-msvc", "10700d13b80c8ee9a5cffe7df90fa8394ea1885e0d5fa11aea455f577ecacac6"),
    ("x86_64-unknown-linux-gnu", "870ff1f74bbb0aa682c98dd9f4870f52acc543d9879d8c4b27fc43635dfc62c3"),
];

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