30 lines
884 B
TOML
30 lines
884 B
TOML
[package]
|
|
license = "Apache-2.0"
|
|
name = "xai-computer-hub-mcp-adapter"
|
|
version = "0.1.0"
|
|
edition.workspace = true
|
|
description = "Bridge between MCP servers and the xAI Computer Hub, registering MCP-discovered tools as native hub tools."
|
|
|
|
[features]
|
|
metrics = ["dep:prometheus"]
|
|
|
|
[dependencies]
|
|
async-trait = { workspace = true }
|
|
serde = { workspace = true, features = ["derive"] }
|
|
serde_json = { workspace = true }
|
|
thiserror = { workspace = true }
|
|
tokio = { workspace = true, features = ["sync"] }
|
|
tracing = { workspace = true }
|
|
prometheus = { workspace = true, optional = true }
|
|
|
|
xai-tool-protocol = { workspace = true }
|
|
xai-tool-runtime = { workspace = true }
|
|
xai-tool-types = { workspace = true }
|
|
xai-computer-hub-sdk = { workspace = true }
|
|
|
|
[dev-dependencies]
|
|
tokio = { workspace = true, features = ["full", "test-util"] }
|
|
futures = { workspace = true }
|
|
|
|
[lints]
|
|
workspace = true
|