- Convert tilth to a Cargo workspace. - Add acp-agent and acp-client crates to the workspace. - Add public search function to mcp.rs for non-MCP callers.
17 lines
630 B
TOML
17 lines
630 B
TOML
[package]
|
|
name = "tilth-acp-client"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
description = "ACP (Agent Client Protocol) client — Rust counterpart of aurelio-backend's AcpClient. Drives any ACP agent (tilth-acp-agent, claude-code, gemini, kimi)."
|
|
license = "MIT"
|
|
|
|
[[bin]]
|
|
name = "tilth-acp-client"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
agent-client-protocol = "1.2.0"
|
|
tokio = { version = "1", features = ["rt-multi-thread", "macros", "io-util", "io-std", "time", "fs", "process"] }
|
|
tokio-util = { version = "0.7", features = ["compat"] }
|
|
serde_json = "1"
|
|
futures-util = { version = "0.3", default-features = false, features = ["std"] }
|