renso-code-graph-mcp 1.0.18

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", "f4337b08d2d9c5cdbcf6dd2e5e332d8782a84baf671812f1993595d0fc889135"),
    ("aarch64-unknown-linux-gnu", "598b9a2be07a57ccfd04dd52ca2f47ac59cb1707d143202a470f8eefefe8f894"),
    ("x86_64-apple-darwin", "f874699189688c8eea091e732d60f0ba011c056ae553f0ee85a275504238f0ce"),
    ("x86_64-pc-windows-msvc", "e318b8fd6278eea0728babcdb8af9d64cffae64d2e92d43d5d7baf4b7db06f3b"),
    ("x86_64-unknown-linux-gnu", "36388d562ca88385fb5e0b0af09a08c66028e15ed9f555d7991c10d561a4be71"),
];

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