-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
57 lines (43 loc) · 1008 Bytes
/
Cargo.toml
File metadata and controls
57 lines (43 loc) · 1008 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
[package]
name = "gitctx"
version = "0.1.0"
edition = "2021"
description = "MCP server for GitHub repository exploration"
license = "MIT"
autobins = false
[lib]
name = "gitctx"
path = "src/lib.rs"
[[bin]]
name = "gitctx-mcp"
path = "src/mcp_main.rs"
[dependencies]
# Async runtime
tokio = { version = "1", features = ["full"] }
# GitHub API client
octocrab = "0.41"
# URL handling
url = "2"
urlencoding = "2"
# Base64 decoding for file contents
base64 = "0.22"
# Config directory paths
dirs = "5"
# Serialization
serde = { version = "1", features = ["derive"] }
serde_json = "1"
# Time handling
chrono = "0.4"
# Error handling
anyhow = "1"
# Browser opening for OAuth flow
open = "5"
# HTTP client
reqwest = { version = "0.12", features = ["json"] }
# Lazy static initialization
once_cell = "1"
# MCP server support
rmcp = { version = "0.12", features = ["server", "macros", "transport-io"] }
schemars = "0.8"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }