forked from symposium-dev/symposium
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
61 lines (50 loc) · 1.26 KB
/
Cargo.toml
File metadata and controls
61 lines (50 loc) · 1.26 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
[workspace]
members = [
"setup",
"md-rfd-preprocessor",
"ci",
"src/symposium-acp-agent",
"src/symposium-ferris",
"src/symposium-math",
"src/symposium-recommendations",
"src/cli-agent-util",
"src/symposium-benchmark",
]
resolver = "2"
[workspace.dependencies]
sacp = "10.1.0"
sacp-tokio = "10.1.0"
sacp-conductor = "10.0.1"
sacp-rmcp = "10.0.1"
sacp-tee = "10.0.1"
yopo = "10.0.1"
elizacp = "11.0.0"
jsonrpcmsg = "0.1.2"
# Core async runtime
tokio = { version = "1.0", features = ["full"] }
tokio-util = { version = "0.7", features = ["compat"] }
futures = "0.3.31"
# Serialization
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
schemars = { version = "1.0", features = ["derive"] }
# UUID generation
uuid = { version = "1.0", features = ["v4"] }
# Error handling
anyhow = "1.0"
thiserror = "1.0"
# Logging
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
# MCP SDK
rmcp = { version = "0.12", features = ["server", "transport-io", "schemars"] }
# Sparkle integration
sparkle = { package = "sparkle-mcp", version = "0.5.0" }
# CLI parsing
clap = { version = "4.0", features = ["derive"] }
# Setup tool dependencies
which = "6.0"
home = "0.5"
fxhash = "0.2.1"
# Testing
expect-test = "1.5"