forked from agentclientprotocol/symposium-acp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
24 lines (21 loc) · 703 Bytes
/
Copy pathCargo.toml
File metadata and controls
24 lines (21 loc) · 703 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
[package]
name = "sacp-tokio"
version = "11.0.0"
edition = "2024"
description = "Tokio-based utilities for SACP (Symposium's extensions to ACP)"
license = "MIT OR Apache-2.0"
repository = "https://github.com/agentclientprotocol/symposium-acp"
keywords = ["acp", "agent", "protocol", "ai", "tokio"]
categories = ["development-tools"]
[dependencies]
sacp = { version = "11.0.0", path = "../sacp" }
futures.workspace = true
serde.workspace = true
serde_json.workspace = true
shell-words = "1.1"
tokio.workspace = true
tokio-util.workspace = true
[dev-dependencies]
expect-test.workspace = true
sacp-test = { path = "../sacp-test" }
tokio = { workspace = true, features = ["macros", "rt-multi-thread"] }