renso-code-graph-mcp 1.0.8

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", "b97474e5a4254cc851280e8646e97b3e168e09655927a34054d42bdce81e4174"),
    ("aarch64-unknown-linux-gnu", "999a67663492450286b48de03cabac96acb8435a1acbc32bc6b1076e97f5a89e"),
    ("x86_64-apple-darwin", "9dfa60f9f7f331eeadb6bf64a18b24a24958a31de0afaf7786fd705852341ac5"),
    ("x86_64-pc-windows-msvc", "80dd1007a31e99068882e66fa86c6f3856d53c7d23af4bdd36b908b6c9c4ad93"),
    ("x86_64-unknown-linux-gnu", "6259f86777154cad16718e74800ca007bdce6113336dd139829c104b9f991a28"),
];

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