renso-code-graph-mcp 1.1.4

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", "91e91e3c1208118e067c7874f1ad7505a0db8fabdba2b86f6a0616067c922000"),
    ("aarch64-unknown-linux-gnu", "40bd913b059cb11ac626fea9bce4101f063d4a2191721f458a815876ef525872"),
    ("x86_64-apple-darwin", "e9a60a7cace9289935eb00af1488bd276e250f3ad7a4ce9f7fd0b9d38360b1a8"),
    ("x86_64-pc-windows-msvc", "1898ff645ef672a37acb6a669f4f5125dbeabcdbf634e78fd52e1c39dbfa04a8"),
    ("x86_64-unknown-linux-gnu", "1304c6e5501d49c5acc861290caa32e0e5297dbbbc157f08222811698059923e"),
];

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