[package]
edition = "2024"
name = "aether-acp-utils"
version = "0.2.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Agent Client Protocol (ACP) utilities for the Aether AI agent framework"
readme = "README.md"
keywords = [
"acp",
"aether",
"agent",
"protocol",
]
categories = [
"api-bindings",
"asynchronous",
]
license = "MIT"
repository = "https://github.com/jcarver989/aether"
[package.metadata.dist]
dist = false
[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
"--cfg",
"docsrs",
]
[features]
client = [
"dep:thiserror",
"dep:tokio-util",
]
default = [
"client",
"server",
]
server = ["dep:thiserror"]
[lib]
name = "acp_utils"
path = "src/lib.rs"
[dependencies.agent-client-protocol]
version = "0.10.4"
[dependencies.async-trait]
version = "0.1"
[dependencies.mcp_utils]
version = "0.2.2"
package = "aether-mcp-utils"
[dependencies.rmcp]
version = "^1.4.0"
features = [
"client",
"server",
"macros",
"schemars",
"auth",
"elicitation",
"transport-io",
]
[dependencies.serde]
version = "1.0.228"
features = ["derive"]
[dependencies.serde_json]
version = "1.0.149"
[dependencies.thiserror]
version = "2.0"
optional = true
[dependencies.tokio]
version = "^1.51.1"
features = ["full"]
[dependencies.tokio-util]
version = "^0.7.18"
features = ["compat"]
optional = true
[dependencies.tracing]
version = "0.1.44"
[dependencies.utils]
version = "0.2.0"
package = "aether-utils"
[dev-dependencies.serde_json]
version = "1.0.149"
[dev-dependencies.tempfile]
version = "3.27"
[dev-dependencies.tokio]
version = "^1.51.1"
features = [
"full",
"full",
"test-util",
]
[lints.clippy]
absolute_paths = "warn"
missing_errors_doc = "allow"
missing_panics_doc = "allow"
must_use_candidate = "allow"
pub_underscore_fields = "allow"
return_self_not_must_use = "allow"
[lints.clippy.all]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1