[package]
edition = "2024"
name = "agent-client-protocol-tokio"
version = "0.11.0"
authors = ["Zed <hi@zed.dev>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Tokio-based utilities for the Agent Client Protocol"
homepage = "https://github.com/agentclientprotocol/rust-sdk"
readme = "README.md"
keywords = [
"acp",
"agent",
"protocol",
"ai",
"tokio",
]
categories = ["development-tools"]
license = "Apache-2.0"
repository = "https://github.com/agentclientprotocol/rust-sdk"
[lib]
name = "agent_client_protocol_tokio"
path = "src/lib.rs"
[[test]]
name = "debug_logging"
path = "tests/debug_logging.rs"
[dependencies.agent-client-protocol]
version = "0.11.0"
[dependencies.futures]
version = "0.3.32"
[dependencies.serde]
version = "1.0"
features = [
"derive",
"rc",
]
[dependencies.serde_json]
version = "1"
features = ["raw_value"]
[dependencies.shell-words]
version = "1.1"
[dependencies.tokio]
version = "1.48"
features = ["full"]
[dependencies.tokio-util]
version = "0.7"
features = ["compat"]
[dev-dependencies.expect-test]
version = "1.5"
[dev-dependencies.tokio]
version = "1.48"
features = ["full"]
[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