renso-code-graph-mcp 1.0.9

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", "64ed1ae400bf1343447def58d9d6eeea411d0c516bd047856b442d6cde96a58c"),
    ("aarch64-unknown-linux-gnu", "c8835e7e486f9ed112ba87a250994fb7c4cdb14a48015c810debd63b4e1a222e"),
    ("x86_64-apple-darwin", "3232450294ddca4f9d436225e1a20cb8fced9ce54a7169915c08e7a6478cccf1"),
    ("x86_64-pc-windows-msvc", "dc3f0d6b8ed119aa8b08cb6fc1996ee6e4bc8d0b5e715b1bc292544b39867125"),
    ("x86_64-unknown-linux-gnu", "c3ca422c55c16bec13937390ba07886c5ea318caea932d2b6094a6e161f7465c"),
];

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