kodegen_tools_github 0.0.5

Github tools in Pure Rust via Octocrab
Documentation
[package]
name        = "kodegen_tools_github"
version.workspace = true
edition     = "2024"
authors     = ["David Maple <david@kodegen.ai>"]
description = "Github tools in Pure Rust via Octocrab"
license = "Apache-2.0 OR MIT"

[dependencies]
kodegen_mcp_schema = { path = "../mcp-schema" , version = "0.0.5" }
kodegen_mcp_tool = { path = "../mcp-tool"  , version = "0.0.5" }
kodegen_utils = { path = "../utils"  , version = "0.0.5" }
kodegen_tools_config = { path = "../tools-config" , version = "0.0.5" }
kodegen_mcp_server_core = { path = "../mcp-server-sse" , version = "0.0.5" }
schemars = "1.0"
rmcp = { version = "0.8.3", features = ["client", "schemars", "server", "transport-sse-server", "transport-child-process", "transport-io", "transport-sse-client", "transport-sse-client-reqwest", "transport-streamable-http-client", "transport-streamable-http-client-reqwest"]}


octocrab    = "0.47.0"
bytes       = "1.10"
snafu       = "0.8"
thiserror   = "2.0.17"
anyhow      = "1.0"
chrono      = "0.4"
log         = "0.4"
tokio       = { version = "1.48", features = ["rt", "rt-multi-thread", "macros", "sync", "fs"] }
tokio-stream = "0.1"
futures     = "0.3"
serde       = { version = "1.0", features = ["derive"] }
serde_json  = "1.0"
serde_yaml  = "0.9"
toml        = "0.9"
walkdir     = "2.5"
lazy_static = "1.5"
regex       = "1.12"
reqwest     = { version = "0.12", features = ["json", "rustls-tls"] }
rustls      = { version = "0.23", features = ["ring"] }
urlencoding = "2.1"
semver      = "1.0"
lru         = "0.16"
tempfile    = "3.23"
jsonwebtoken = "9.3"
gix = { version = "0.74", features = ["worktree-mutation", "blocking-network-client"] }

[dev-dependencies]
kodegen_mcp_client = { path = "../mcp-client" , version = "0.0.5" }
tempfile    = "3.23"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
chrono = { version = "0.4", features = ["serde"] }

[features]
default = ["mcp"]
mcp = []  # Feature flag for MCP tools

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

[[bin]]
name = "kodegen-github"
path = "src/main.rs"