-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
43 lines (41 loc) · 1.89 KB
/
Cargo.toml
File metadata and controls
43 lines (41 loc) · 1.89 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
[workspace]
resolver = "3"
members = ["zbobr-dispatcher", "zbobr-executor-copilot", "zbobr-executor-claude", "zbobr-executor-mcp-tester", "zbobr-task-backend-github", "zbobr-task-backend-fs", "zbobr-repo-backend-github", "zbobr-repo-backend-fs", "zbobr-api", "zbobr-macros", "zbobr-utility", "zbobr"]
[workspace.package]
edition = "2024"
[workspace.dependencies]
zbobr-dispatcher = { path = "zbobr-dispatcher" }
zbobr-task-backend-github = { path = "zbobr-task-backend-github" }
zbobr-task-backend-fs = { path = "zbobr-task-backend-fs" }
zbobr-repo-backend-github = { path = "zbobr-repo-backend-github" }
zbobr-repo-backend-fs = { path = "zbobr-repo-backend-fs" }
zbobr-api = { path = "zbobr-api" }
zbobr-config = { path = "zbobr-config" }
zbobr-executor-copilot = { path = "zbobr-executor-copilot" }
zbobr-executor-claude = { path = "zbobr-executor-claude" }
zbobr-executor-mcp-tester = { path = "zbobr-executor-mcp-tester" }
zbobr-utility = { path = "zbobr-utility" }
zbobr-macros = { path = "zbobr-macros" }
tokio = { version = "1", features = ["full"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
async-trait = "0.1.89"
rmcp = { version = "0.17", features = ["server", "macros", "transport-streamable-http-server"] }
axum = "0.8"
schemars = "1"
anyhow = "1.0.102"
clap = { version = "4.5.60", features = ["derive", "env"] }
reqwest = { version = "0.13.2", features = ["json", "blocking", "cookies"] }
rustls = { version = "0.23.37", features = ["ring"] }
toml = { version = "0.9.8", features = ["preserve_order"] }
toml_edit = { version = "0.22", features = ["serde"] }
tempfile = "3.26"
hostname = "0.4"
paste = "1.0"
typesafe_builder = "1.6"
simpleinterpolation = "0.2"
indexmap = { version = "2", features = ["serde"] }
base64 = "0.22"
chrono = { version = "0.4", default-features = false, features = ["clock", "serde"] }