[package]
edition = "2024"
name = "agent-client-protocol-cookbook"
version = "0.11.1"
authors = ["Zed <hi@zed.dev>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Cookbook of common patterns for building ACP components"
homepage = "https://github.com/agentclientprotocol/rust-sdk"
readme = false
keywords = [
"acp",
"agent",
"proxy",
"mcp",
"cookbook",
]
categories = ["development-tools"]
license = "Apache-2.0"
repository = "https://github.com/agentclientprotocol/rust-sdk"
[lib]
name = "agent_client_protocol_cookbook"
path = "src/lib.rs"
[dependencies.agent-client-protocol]
version = "0.11.1"
[dependencies.agent-client-protocol-conductor]
version = "0.11.1"
[dependencies.agent-client-protocol-rmcp]
version = "0.11.1"
[dependencies.agent-client-protocol-tokio]
version = "0.11.1"
[dependencies.rmcp]
version = "1.2.0"
features = [
"server",
"transport-io",
"schemars",
]
[dependencies.schemars]
version = "1.0"
features = ["derive"]
[dependencies.serde]
version = "1.0"
features = [
"derive",
"rc",
]
[dependencies.serde_json]
version = "1"
features = ["raw_value"]
[dependencies.tokio]
version = "1.48"
features = ["full"]
[dependencies.tracing]
version = "0.1"
[lints.clippy]
doc_markdown = "allow"
missing_errors_doc = "allow"
missing_panics_doc = "allow"
needless_pass_by_value = "allow"
similar_names = "allow"
struct_field_names = "allow"
too_many_lines = "allow"
type_complexity = "allow"
wildcard_imports = "allow"
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
let-underscore = "warn"
missing_debug_implementations = "warn"
[lints.rust.future_incompatible]
level = "warn"
priority = -1
[lints.rust.nonstandard_style]
level = "warn"
priority = -1
[lints.rust.rust_2018_idioms]
level = "warn"
priority = -1
[lints.rust.unused]
level = "warn"
priority = -1