renso-code-graph-mcp 1.0.24

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", "c4ede7fd4f62f73676db087675199e92b287e2b0f429731a81b9ad7ae48b8371"),
    ("aarch64-unknown-linux-gnu", "b26637dcbf6ce471446bd82b7b56f7556306a4fcaabef6e7767c6648cf2bd8fd"),
    ("x86_64-apple-darwin", "8e38bed24207fd296bdb44e2e8ae1552ae178cddbe005673cfbe0cded1b0ed3c"),
    ("x86_64-pc-windows-msvc", "34cbd23403a41d2416ead26e35fb7a695531db0c8bea64e39e3fe2cb9547627d"),
    ("x86_64-unknown-linux-gnu", "96ce4b651b8ee05ab790cbafa1f0c57da6b7a7235f9625917430b1eacb470504"),
];

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