-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathCargo.toml
More file actions
42 lines (37 loc) · 1.02 KB
/
Cargo.toml
File metadata and controls
42 lines (37 loc) · 1.02 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
[package]
name = "elizacp"
version = "1.0.0"
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"
publish = false
[[bin]]
name = "elizacp"
path = "src/main.rs"
[features]
unstable = ["sacp/unstable","agent-client-protocol-schema/unstable"]
[dependencies]
sacp = { version = "1.0.0", path = "../sacp" }
agent-client-protocol-schema.workspace = true
anyhow.workspace = true
clap.workspace = true
futures.workspace = true
rand = "0.9"
regex = "1.12"
serde.workspace = true
serde_json.workspace = true
tokio.workspace = true
tokio-util.workspace = true
tracing.workspace = true
tracing-subscriber.workspace = true
uuid.workspace = true
sacp-tokio = { version = "1.0.0", path = "../sacp-tokio" }
[dev-dependencies]
expect-test.workspace = true
[lints]
workspace = true