renso-code-graph 1.0.9

Dependency graph analyzer for code, tests, docs, and policy surfaces. Installs the prebuilt `code_graph` binary from GitHub Releases.
//! Release manifest for the `code_graph` stub crate.
//!
//! Constants are templated by `.github/workflows/release.yml` between
//! `make-manifest` and `publish-cargo`. Local development builds keep
//! the empty placeholder values, which cause `build.rs` to produce a
//! non-runnable stub binary (see `build.rs` placeholder detection and
//! `main.rs` placeholder check).

/// 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. The full URL is
/// `<RELEASE_URL_BASE>/v<version>/<ARCHIVE_PREFIX>-<target>.<ext>`.
pub const ARCHIVE_PREFIX: &str = "code_graph";

/// The binary inside the archive (`code_graph` or `code_graph-mcp`).
/// This is what gets extracted and embedded into the trampoline.
pub const BINARY_NAME: &str = "code_graph";

/// SHA256 hex of each per-target archive, keyed by Rust target triple.
/// Templated at release time. An empty slice triggers placeholder mode
/// (workspace dev builds, `cargo build --workspace` without network).
pub const SHA256_BY_TARGET: &[(&str, &str)] = &[
    ("aarch64-apple-darwin", "b8f07055af0a17abde8fe7d9f60be5cc1a91ab55667a96af6ddb35f877cd0174"),
    ("aarch64-unknown-linux-gnu", "cf6eeef1146a1cc65e56722e8172f961497e03316668095fbac4f7aaf2f692d3"),
    ("x86_64-apple-darwin", "34a9b1d4b0680cef1d9c17a75491b53c78b67a8ed6f88de379f37ea234c82b6f"),
    ("x86_64-pc-windows-msvc", "01acac4abce60fb1bf41cdbe5bc54318b64ee2641798e0d6fcbd0426a7c0642d"),
    ("x86_64-unknown-linux-gnu", "b9441b1d990e1c993f413f55067e70a7a43971002ec16c75b7d33e92e8624180"),
];

/// Optional minisign public key (base64) that signs each release
/// archive. Empty string disables signature verification. Templated
/// alongside `SHA256_BY_TARGET` at release time.
pub const MINISIGN_PUBKEY: &str = "";