- 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
562 B
TOML
17 lines
562 B
TOML
[package]
|
|
name = "tilth-acp-agent"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
description = "ACP (Agent Client Protocol) agent exposing tilth code intelligence — spawnable by Zed, JetBrains, and Eclipse Theia (aurelio-theia)."
|
|
license = "MIT"
|
|
|
|
[[bin]]
|
|
name = "tilth-acp-agent"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
agent-client-protocol = "1.2.0"
|
|
tokio = { version = "1", features = ["rt-multi-thread", "macros", "io-util", "io-std", "time"] }
|
|
serde_json = "1"
|
|
futures-util = { version = "0.3", default-features = false, features = ["std"] }
|
|
tilth = { path = "../.." }
|