-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
98 lines (95 loc) · 2.81 KB
/
Cargo.toml
File metadata and controls
98 lines (95 loc) · 2.81 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
[workspace]
members = [
"crates/core",
"crates/workflow",
"crates/agent-common",
"crates/agent-acp",
"crates/agent-acpx",
"crates/agent-local",
"crates/agent-pi",
"crates/agent-codex",
"crates/agent-openai",
"crates/agent-claude",
"crates/agent-copilot",
"crates/agents",
"crates/orchestrator",
"crates/workspace",
"crates/issue-mock",
"crates/beads",
"crates/linear",
"crates/git",
"crates/github",
"crates/gitlab",
"crates/feedback",
"crates/tools",
"crates/sqlite",
"crates/metrics",
"crates/tui",
"crates/httpd",
"crates/cli",
]
resolver = "2"
[workspace.package]
edition = "2024"
version = "0.1.0"
license = "Apache-2.0"
[workspace.dependencies]
agent-client-protocol = "0.10.2"
async-trait = "0.1"
axum = "0.8"
chrono = { version = "0.4", features = ["serde"] }
clap = { version = "4.5", features = ["derive", "env"] }
config = "0.15"
crossterm = { version = "0.29", features = ["event-stream"] }
dirs = "6.0"
futures-util = "0.3"
git2 = { version = "0.20", features = ["vendored-libgit2", "vendored-openssl"] }
async-graphql = "7"
async-graphql-axum = "7"
async-stream = "0.3"
graphql_client = "0.16"
html-escape = "0.2"
liquid = "0.26"
minijinja = "2"
metrics = "0.24"
metrics-exporter-prometheus = "0.18"
notify = "8.2"
octocrab = "0.49.5"
opentelemetry = "0.31"
opentelemetry-otlp = { version = "0.31", features = ["grpc-tonic", "trace"] }
opentelemetry_sdk = { version = "0.31", features = ["rt-tokio", "trace"] }
ratatui = "0.30"
tui-markdown = { version = "=0.3.7", default-features = false }
reqwest = { version = "0.12", default-features = false, features = ["json", "rustls-tls", "stream"] }
rustls = { version = "0.23.37", default-features = false, features = ["aws_lc_rs"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
serde_yaml = "0.9"
tempfile = "3"
portable-pty = "0.9"
pty-process = "0.5"
rustix = { version = "1.1", features = ["stdio"] }
urlencoding = "2.1"
uuid = { version = "1", features = ["v4", "serde"] }
sqlx = { version = "0.8", default-features = false, features = ["sqlite", "runtime-tokio-rustls", "macros", "chrono", "migrate"] }
thiserror = "2.0"
toml = "0.8"
tokio = { version = "1.45", features = ["full"] }
tokio-stream = "0.1"
tokio-util = { version = "0.7", features = ["compat"] }
tracing = "0.1"
tracing-opentelemetry = "0.32"
tracing-subscriber = { version = "0.3", features = ["env-filter", "fmt", "json"] }
axum-login = "0.18"
hex = "0.4"
hmac = "0.12"
sha2 = "0.10"
subtle = "2"
time = "0.3"
tower = { version = "0.5", features = ["util"] }
tower-http = { version = "0.6", features = ["fs"] }
tower-sessions = { version = "0.14", default-features = false }
tower-sessions-sqlx-store = { version = "0.15", features = ["sqlite"] }
vt100 = "0.15.2"
[patch.crates-io]
portable-pty = { git = "https://github.com/penso/portable-pty", rev = "7057367" }