Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
members = [
"src/sacp-conductor",
"src/sacp",
"src/sacp-cookbook",
"src/sacp-derive",
"src/sacp-tokio",
"src/sacp-rmcp",
Expand Down
23 changes: 23 additions & 0 deletions src/sacp-cookbook/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
[package]
name = "sacp-cookbook"
version = "10.0.0-alpha.2"
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 = "10.0.0-alpha.2", path = "../sacp" }
sacp-conductor = { version = "10.0.0-alpha.2", path = "../sacp-conductor" }
sacp-rmcp = { version = "10.0.0-alpha.2", path = "../sacp-rmcp" }
sacp-tokio = { version = "10.0.0-alpha.2", 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
Loading