-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathCargo.toml
More file actions
67 lines (53 loc) · 1.62 KB
/
Copy pathCargo.toml
File metadata and controls
67 lines (53 loc) · 1.62 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
[package]
name = "terraphim_github_runner_server"
version = "0.1.0"
edition.workspace = true
rust-version.workspace = true
description = "GitHub Actions runner server with webhook support for Terraphim AI"
documentation = "https://terraphim.ai"
homepage = "https://terraphim.ai"
repository = "https://github.com/terraphim/terraphim-ai"
keywords = ["ai", "github-actions", "server", "webhook", "ci-cd"]
license = "MIT"
readme = "../../README.md"
[dependencies]
# Web framework
salvo = { version = "0.89.2" }
tokio = { version = "1.36", features = ["full"] }
# GitHub integration
octocrab = "0.49.5"
# Serialization
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
# Webhook verification
hmac = "0.12"
sha2 = "0.10"
hex = "0.4"
subtle = "2.6"
# Error handling
anyhow = "1.0"
thiserror = "1.0"
# Logging
tracing = "0.1"
tracing-subscriber = "0.3"
# CLI
clap = { version = "4.5", features = ["derive"] }
# HTTP client (for Firecracker API)
reqwest = { version = "0.12", features = ["json", "rustls-tls"], default-features = false }
# Time handling
chrono = "0.4"
# UUID
uuid = { version = "1.21", features = ["v4", "serde"] }
# Async traits
async-trait = "0.1"
# Internal crates
terraphim_github_runner = { path = "../terraphim_github_runner" }
terraphim_service = { version = "1.20.5", registry = "terraphim" }
terraphim_config = { version = "1.20.2", registry = "terraphim" }
[features]
default = []
ollama = ["terraphim_service/ollama"]
openrouter = ["terraphim_service/openrouter"]
[dev-dependencies]
salvo = { version = "0.89.2", features = ["test"] }
terraphim_test_utils = { version = "1.20.3", registry = "terraphim" }