-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathCargo.toml
More file actions
66 lines (55 loc) · 2.1 KB
/
Copy pathCargo.toml
File metadata and controls
66 lines (55 loc) · 2.1 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
[package]
name = "terraphim_github_runner"
version = "0.1.0"
edition.workspace = true
rust-version.workspace = true
description = "GitHub Actions runner with Firecracker sandbox integration for Terraphim AI"
documentation = "https://terraphim.ai"
homepage = "https://terraphim.ai"
repository = "https://github.com/terraphim/terraphim-ai"
keywords = ["ai", "github-actions", "firecracker", "sandbox", "ci-cd"]
license = "Apache-2.0"
readme = "../../README.md"
[features]
default = []
# Feature flag for safe rollout
github-runner = [
"dep:terraphim_multi_agent",
"dep:terraphim_agent_evolution",
]
[dependencies]
# Workspace dependencies
tokio.workspace = true
serde.workspace = true
serde_json.workspace = true
uuid.workspace = true
chrono.workspace = true
async-trait.workspace = true
thiserror.workspace = true
anyhow.workspace = true
log.workspace = true
# Concurrent data structures
dashmap = "6.1"
# Gzip inflate for Gitea WorkflowPayload (may be compressed)
flate2 = "1.0"
# HTTP client for Firecracker API
reqwest = { version = "0.12", features = ["json", "rustls-tls"], default-features = false }
# Internal dependencies (feature-gated)
terraphim_multi_agent = { version = "1.0.0", optional = true }
terraphim_agent_evolution = { version = "1.20.2", optional = true, registry = "terraphim" }
# LLM integration for workflow understanding
terraphim_service = { version = "1.20.4" }
# Always needed for types
terraphim_types = { version = "1.20.4" }
# Knowledge graph for learning
terraphim_rolegraph = { version = "1.20.4" }
# Firecracker VM integration -- Linux-only (Firecracker is a Linux/KVM technology).
# Not directly imported in M1 (the host + rch routes need no VM), but carried on
# Linux for the Firecracker execution route (M2/M3) and parity with
# terraphim_github_runner_server::FirecrackerVmProvider. Target-gated so the
# host-only dev/CI build (e.g. macOS) stays lean while Linux retains it.
[target.'cfg(target_os = "linux")'.dependencies]
terraphim-firecracker = { path = "../../terraphim_firecracker" }
[dev-dependencies]
tokio = { workspace = true, features = ["test-util", "macros"] }
env_logger = "0.11"