-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
46 lines (37 loc) · 1.21 KB
/
Cargo.toml
File metadata and controls
46 lines (37 loc) · 1.21 KB
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
[package]
name = "fgp-github"
version = "0.2.0"
edition = "2021"
description = "FGP daemon for GitHub operations via GraphQL and REST API"
license = "MIT"
repository = "https://github.com/fast-gateway-protocol/github"
authors = ["Wolfgang Schoenberger"]
# CHANGELOG (recent first, max 5 entries)
# 01/14/2026 - Upgraded to true GraphQL/REST API (Claude)
# 01/12/2026 - Initial implementation with gh CLI wrapper (Claude)
[[bin]]
name = "fgp-github"
path = "src/main.rs"
[dependencies]
# FGP daemon SDK (local path for development)
fgp-daemon = { path = "../daemon" }
# HTTP client (disable default-tls to avoid OpenSSL for cross-compilation)
reqwest = { version = "0.12", default-features = false, features = ["json", "rustls-tls"] }
# Serialization
serde = { version = "1", features = ["derive"] }
serde_json = "1"
serde_yaml = "0.9"
# Async runtime
tokio = { version = "1", features = ["rt-multi-thread", "net", "time", "sync"] }
# Date/time
chrono = { version = "0.4", features = ["serde"] }
# Logging
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
# Utilities
anyhow = "1"
dirs = "6.0"
clap = { version = "4", features = ["derive"] }
shellexpand = "3.1"
libc = "0.2"
daemonize = "0.5"