renso-code-graph-mcp 1.2.1

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", "d26cae749cf2bf9a63e1c47e4c8c1c0fda5cda6614f2d308291b9a43904c7ac8"),
    ("aarch64-unknown-linux-gnu", "a01c32da0e7dc3266fd2c0e36bd1822f80479bb3ddc53f1c8a236400b05f9772"),
    ("x86_64-apple-darwin", "785adfd17639f975fc0652a5c1dc00e4e7190befdf736f4aa56e7d9788693849"),
    ("x86_64-pc-windows-msvc", "40950157442256614e66abbd31cb8bb233641125eb34edd8092552d16293ce09"),
    ("x86_64-unknown-linux-gnu", "b8155b0a9c43cf106a26ee76beca2d78ced0f06202a5eddbc4a38f8bb5c70d0d"),
];

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