-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathCargo.toml
More file actions
23 lines (21 loc) · 822 Bytes
/
Cargo.toml
File metadata and controls
23 lines (21 loc) · 822 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
[package]
name = "sacp-cookbook"
version = "12.0.0-alpha.1"
edition = "2024"
description = "Cookbook of common patterns for building ACP components"
license = "MIT OR Apache-2.0"
repository = "https://github.com/symposium-dev/symposium-acp"
keywords = ["acp", "agent", "proxy", "mcp", "cookbook"]
categories = ["development-tools"]
[dependencies]
sacp = { version = "12.0.0-alpha.1", path = "../sacp" }
sacp-conductor = { version = "12.0.0-alpha.1", path = "../sacp-conductor" }
sacp-rmcp = { version = "12.0.0-alpha.1", path = "../sacp-rmcp" }
sacp-tokio = { version = "12.0.0-alpha.1", path = "../sacp-tokio" }
# Re-export common dependencies needed by cookbook examples
rmcp.workspace = true
serde.workspace = true
serde_json.workspace = true
schemars.workspace = true
tokio.workspace = true
tracing.workspace = true