github-mcp 0.4.2

GitHub v3 REST API MCP server, generated by mcpify.
Documentation
[workspace]
members = ["cargo:."]

# Config for 'dist'
[dist]
# The preferred dist version to use in CI (Cargo.toml SemVer syntax)
cargo-dist-version = "0.32.0"
# CI backends to support
ci = "github"
# The installers to generate for each app
installers = ["shell", "powershell"]
# Target platforms to build apps for (Rust target-triple syntax).
# x86_64-apple-darwin (Intel Mac) is intentionally excluded: ort-sys
# 2.0.0-rc.12 ships no prebuilt ONNX Runtime binary for that target
# ("ort does not provide prebuilt binaries for the target
# `x86_64-apple-darwin`"), and there's no source-build fallback wired
# up. Re-add once ort ships one, or once this crate switches ONNX
# Runtime backends.
targets = ["aarch64-apple-darwin", "x86_64-unknown-linux-gnu", "x86_64-pc-windows-msvc"]
# Path that installers should place binaries in
install-path = "CARGO_HOME"
# Whether to install an updater program
install-updater = false
# fastembed/ort's downloaded prebuilt ONNX Runtime static libs on Windows
# are built against the dynamic CRT (MSVCRT); linking them into a
# +crt-static binary (dist's default on *-windows-msvc) leaves libcmt
# without import stubs for CRT functions like tolower/isdigit/fstat,
# which fails at link time with LNK2019/LNK1120.
msvc-crt-static = false

[dist.github-custom-runners]
# ort-sys's downloaded prebuilt ONNX Runtime static lib references
# glibc >= 2.38 symbols (e.g. `__isoc23_strtoll`), which dist's default
# ubuntu-22.04 runner (glibc 2.35) can't satisfy at link time — same
# reasoning as the Dockerfile's builder/runtime base image choice.
x86_64-unknown-linux-gnu = "ubuntu-24.04"