-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
21 lines (20 loc) · 964 Bytes
/
Copy pathCargo.toml
File metadata and controls
21 lines (20 loc) · 964 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
[package]
name = "host-bridge-mcp"
version = "0.2.0"
edition = "2024"
[dependencies]
axum = { version = "0.8.9", features = ["json", "macros"] }
crossterm = "0.29.0"
notify = "8.2.0"
ratatui = { version = "0.30.0", default-features = false, features = ["crossterm"] }
rmcp = { version = "1.7.0", features = ["server", "macros", "transport-streamable-http-server", "elicitation"] }
russh = { version = "0.56.0", default-features = false, features = ["ring"] }
serde = { version = "1.0.228", features = ["derive"] }
serde_json = "1.0.150"
serde_saphyr = { package = "serde-saphyr", version = "0.0.21" }
thiserror = "2.0.18"
tokio = { version = "1.52.3", features = ["macros", "process", "rt-multi-thread", "io-util", "sync", "fs", "time", "net", "signal"] }
tokio-stream = { version = "0.1.18", features = ["sync"] }
tracing = "0.1.44"
tracing-subscriber = { version = "0.3.23", features = ["env-filter"] }
uuid = { version = "1.23.1", features = ["serde", "v4"] }