[package]
edition = "2024"
name = "acp-cli"
version = "0.2.2"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Headless CLI client for the Agent Client Protocol (ACP)"
homepage = "https://github.com/motosan-dev/acp-cli"
readme = "README.md"
keywords = [
"acp",
"agent",
"cli",
"claude",
"llm",
]
categories = [
"command-line-utilities",
"development-tools",
]
license = "MIT"
repository = "https://github.com/motosan-dev/acp-cli"
[lib]
name = "acp_cli"
path = "src/lib.rs"
[[bin]]
name = "acp-cli"
path = "src/main.rs"
[[test]]
name = "test_cli"
path = "tests/test_cli.rs"
[[test]]
name = "test_config"
path = "tests/test_config.rs"
[[test]]
name = "test_ipc"
path = "tests/test_ipc.rs"
[[test]]
name = "test_permissions"
path = "tests/test_permissions.rs"
[[test]]
name = "test_prompt_source"
path = "tests/test_prompt_source.rs"
[[test]]
name = "test_registry"
path = "tests/test_registry.rs"
[[test]]
name = "test_session"
path = "tests/test_session.rs"
[dependencies.agent-client-protocol]
version = "0.10"
[dependencies.async-trait]
version = "0.1"
[dependencies.clap]
version = "4"
features = ["derive"]
[dependencies.dirs]
version = "6"
[dependencies.indicatif]
version = "0.17"
[dependencies.libc]
version = "0.2"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.sha2]
version = "0.10"
[dependencies.thiserror]
version = "2"
[dependencies.tokio]
version = "1"
features = ["full"]
[dependencies.tokio-util]
version = "0.7"
features = ["compat"]
[dev-dependencies.tempfile]
version = "3"