-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathCargo.toml
More file actions
65 lines (52 loc) · 1.83 KB
/
Copy pathCargo.toml
File metadata and controls
65 lines (52 loc) · 1.83 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
[package]
name = "terraphim_symphony"
version = "1.13.0"
edition = "2024"
rust-version = "1.85"
authors = ["Terraphim Team <team@terraphim.ai>"]
description = "Symphony orchestration service - reads issues from trackers and dispatches coding agent sessions"
documentation = "https://terraphim.ai"
homepage = "https://terraphim.ai"
repository = "https://github.com/terraphim/terraphim-ai"
keywords = ["ai", "orchestration", "agents", "coding", "workflow"]
license = "Apache-2.0"
readme = "../../README.md"
[dependencies]
tokio = { version = "1.0", features = ["full"] }
reqwest = { version = "0.12", features = ["json", "rustls-tls"], default-features = false }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
chrono = { version = "0.4", features = ["serde"] }
uuid = { version = "1.21", features = ["v4", "serde"] }
async-trait = "0.1"
thiserror = "1.0"
# YAML parsing (same version used across workspace)
serde_yaml = "0.9"
# Liquid-compatible template rendering
liquid = "0.26"
# Structured logging
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
# CLI
clap = { version = "4", features = ["derive"] }
# Error handling for CLI binary
anyhow = "1"
# Process management (Unix signals)
nix = { version = "0.27", features = ["process", "signal"] }
# Issue tracker abstraction
terraphim_tracker = { version = "1.20.2", registry = "terraphim" }
# File watching (for WORKFLOW.md hot-reload)
notify = { version = "6.1", optional = true }
# HTTP server (optional observability API)
axum = { version = "0.8", optional = true }
tower-http = { version = "0.6", features = ["cors", "trace"], optional = true }
[features]
default = ["file-watch"]
file-watch = ["dep:notify"]
api = ["dep:axum", "dep:tower-http"]
[dev-dependencies]
tokio-test = "0.4"
tempfile = "3.8"
[[bin]]
name = "symphony"
path = "bin/symphony.rs"