-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathCargo.toml
More file actions
41 lines (38 loc) · 1.17 KB
/
Cargo.toml
File metadata and controls
41 lines (38 loc) · 1.17 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
[package]
name = "elizacp"
version = "12.0.0-alpha.1"
edition = "2024"
description = "Classic Eliza chatbot as an ACP agent for testing"
license = "MIT OR Apache-2.0"
repository = "https://github.com/symposium-dev/symposium-acp"
keywords = ["acp", "agent", "eliza", "testing"]
categories = ["development-tools"]
authors = ["Niko Matsakis <niko@alum.mit.edu>"]
readme = "README.md"
[[bin]]
name = "elizacp"
path = "src/main.rs"
test = false
[dependencies]
sacp = { version = "12.0.0-alpha.1", path = "../sacp" }
agent-client-protocol-schema.workspace = true
anyhow.workspace = true
clap.workspace = true
futures.workspace = true
rand = "0.9"
regex = "1.12"
rmcp = { workspace = true, features = ["client", "transport-child-process", "transport-streamable-http-client-reqwest"] }
serde = { workspace = true, features = ["derive"] }
toml = "0.8"
serde_json.workspace = true
tokio.workspace = true
tokio-util.workspace = true
tracing.workspace = true
tracing-subscriber.workspace = true
uuid.workspace = true
sacp-tokio = { version = "12.0.0-alpha.1", path = "../sacp-tokio" }
ratatui = "0.30.0"
crossterm = "0.29.0"
[dev-dependencies]
expect-test.workspace = true
sacp-test = { path = "../sacp-test" }