-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
79 lines (66 loc) · 1.93 KB
/
Cargo.toml
File metadata and controls
79 lines (66 loc) · 1.93 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
[workspace]
resolver = "2"
members = [
"crates/cli",
"crates/core",
"crates/db",
"crates/server",
"crates/opencode-client",
"crates/orchestrator",
"crates/vcs",
"crates/events",
"crates/github",
"crates/mcp-findings",
"crates/mcp-wiki",
"crates/wiki",
]
[workspace.package]
version = "0.1.0"
edition = "2021"
rust-version = "1.75"
[workspace.dependencies]
# Internal crates
opencode_core = { path = "crates/core" }
db = { path = "crates/db" }
opencode_client = { path = "crates/opencode-client" } # OpenAPI Generator SDK
orchestrator = { path = "crates/orchestrator" }
vcs = { path = "crates/vcs" }
events = { path = "crates/events" }
github = { path = "crates/github" }
mcp-findings = { path = "crates/mcp-findings" }
mcp-wiki = { path = "crates/mcp-wiki" }
wiki = { path = "crates/wiki" }
# HTTP client
reqwest = { version = "0.12", features = ["json", "stream"] }
bytes = "1.0"
futures = "0.3"
eventsource-stream = "0.2"
# Async runtime
tokio = { version = "1.0", features = ["full"] }
# Web framework
axum = { version = "0.8", features = ["macros", "ws"] }
tower-http = { version = "0.5", features = ["cors", "trace", "fs"] }
# Database
sqlx = { version = "0.8", features = ["runtime-tokio", "sqlite"] }
# Serialization
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
# Error handling
anyhow = "1.0"
thiserror = "2.0"
# Logging
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
# Utils
uuid = { version = "1.0", features = ["v4", "serde"] }
chrono = { version = "0.4", features = ["serde"] }
async-trait = "0.1"
regex = "1.11"
# Type generation for TypeScript
ts-rs = { version = "10.1", features = ["uuid-impl", "chrono-impl", "serde-compat"] }
# OpenAPI documentation
utoipa = { version = "5", features = ["uuid", "chrono", "axum_extras"] }
utoipa-axum = "0.2"
utoipa-swagger-ui = { version = "9", features = ["axum"] }
[profile.release]
strip = true