Publish harness and TUI open-source
initial sync from the monorepo
This commit is contained in:
commit
c68e39f604
2734 changed files with 1437016 additions and 0 deletions
30
crates/common/xai-computer-hub-mcp-adapter/Cargo.toml
Normal file
30
crates/common/xai-computer-hub-mcp-adapter/Cargo.toml
Normal file
|
|
@ -0,0 +1,30 @@
|
|||
[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
|
||||
Loading…
Reference in a new issue