githubdw 0.2.2

Local SQLite data warehouse for GitHub repositories: sync PRs, reviews, and issues; query, metrics, fulltext search, and MCP server
Documentation
[package]
name = "githubdw"
version = "0.2.2"
edition = "2024"
license = "MIT"
readme = "README.md"
description = "Local SQLite data warehouse for GitHub repositories: sync PRs, reviews, and issues; query, metrics, fulltext search, and MCP server"
repository = "https://github.com/adlio/githubdw"
keywords = ["github", "sqlite", "data-warehouse", "metrics", "mcp"]
categories = ["command-line-utilities", "database"]

[dependencies]
rusqlite = { version = "0.37", features = ["bundled"] }
rusqlite_migration = "2.3"
clap = { version = "4.5", features = ["derive"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
thiserror = "2.0"
chrono = { version = "0.4", features = ["serde"] }
chrono-tz = "0.10"
dirs = "6.0"
# Pinned to 0.12 (not 2.x) so this crate stays resolvable from vendored or
# mirrored crates.io registries, which can lag upstream by weeks. The MCP tool
# contract is identical; see src/mcp/mod.rs for the hand-written tool router.
rmcp = { version = "0.12", features = ["server", "transport-io"] }
tokio = { version = "1.53.1", features = ["rt-multi-thread", "macros"] }
schemars = "1.2.1"

# Optional: AI summaries (feature = "summaries"). Gated so the default build
# stays lean and resolvable from vendored/mirrored registries. Bedrock and
# mixtape-core are PUBLIC dependencies with no Amazon-internal coupling, so
# this keeps the crate GitHub-only in the sense the hard rule cares about.
mixtape-core = { version = "0.4", features = ["bedrock"], optional = true }
aws-config = { version = "1", optional = true }

[dev-dependencies]
tempfile = "3.20"

[features]
default = []
live-tests = []
# AI summaries of pull requests (Bedrock via mixtape-core). Opt-in.
summaries = ["dep:mixtape-core", "dep:aws-config"]

[[bin]]
name = "githubdw"
path = "src/bin/githubdw.rs"

[lib]
name = "githubdw"
path = "src/lib.rs"