-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathCargo.toml
More file actions
54 lines (49 loc) · 1.5 KB
/
Cargo.toml
File metadata and controls
54 lines (49 loc) · 1.5 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
[package]
name = "sacp-conductor"
version = "12.0.0-alpha.1"
edition = "2024"
description = "Conductor for orchestrating SACP proxy chains"
license = "MIT OR Apache-2.0"
repository = "https://github.com/symposium-dev/symposium-acp"
keywords = ["acp", "agent", "conductor", "ai"]
categories = ["development-tools"]
[[bin]]
name = "sacp-conductor"
path = "src/main.rs"
[features]
test-support = []
[dependencies]
sacp = { version = "12.0.0-alpha.1", path = "../sacp" }
sacp-tokio = { version = "12.0.0-alpha.1", path = "../sacp-tokio" }
sacp-trace-viewer = { version = "12.0.0-alpha.1", path = "../sacp-trace-viewer" }
agent-client-protocol-schema.workspace = true
anyhow.workspace = true
axum.workspace = true
chrono.workspace = true
clap.workspace = true
futures.workspace = true
hyper.workspace = true
tower.workspace = true
serde.workspace = true
serde_json.workspace = true
shell-words = "1.1"
strip-ansi-escapes = "0.2"
thiserror.workspace = true
tokio.workspace = true
tokio-util.workspace = true
tracing.workspace = true
tracing-appender.workspace = true
tracing-subscriber.workspace = true
uuid.workspace = true
async-stream = "0.3.6"
fxhash.workspace = true
futures-concurrency = "7.6.3"
[dev-dependencies]
elizacp = { path = "../elizacp" }
expect-test.workspace = true
rmcp = { workspace = true, features = ["client", "server", "transport-io", "transport-child-process"] }
schemars.workspace = true
sacp-test = { path = "../sacp-test" }
sacp-tokio = { path = "../sacp-tokio" }
yopo = { path = "../yopo" }
regex = "1.12.2"