refactor(#2455): split hive-agent-mcp into its own bin crate

This commit is contained in:
damocles 2026-07-14 23:45:33 +02:00
commit e7f8254788
15 changed files with 334 additions and 100 deletions

23
hive-agent-mcp/Cargo.toml Normal file
View file

@ -0,0 +1,23 @@
[package]
name = "hive-agent-mcp"
version.workspace = true
edition.workspace = true
[[bin]]
name = "hive-agent-mcp"
path = "src/main.rs"
[lints]
workspace = true
[dependencies]
anyhow.workspace = true
axum.workspace = true
clap.workspace = true
hive-sh4re.workspace = true
rmcp.workspace = true
serde.workspace = true
serde_json.workspace = true
tokio.workspace = true
tracing.workspace = true
tracing-subscriber.workspace = true