-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
31 lines (28 loc) · 973 Bytes
/
Cargo.toml
File metadata and controls
31 lines (28 loc) · 973 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
[package]
name = "mcp-dashboard"
version = "0.3.12"
edition = "2024"
rust-version = "1.85"
description = "A full-featured TUI dashboard for managing and monitoring MCP (Model Context Protocol) servers"
license = "MIT OR Apache-2.0"
repository = "https://github.com/nickslamecode/mcp-dashboard"
readme = "README.md"
keywords = ["mcp", "dashboard", "tui", "devtools", "monitoring"]
categories = ["command-line-utilities", "development-tools"]
[dependencies]
ratatui = "0.29"
crossterm = "0.28"
tokio = { version = "1", features = ["full"] }
rmcp = { version = "1", features = ["client", "transport-child-process", "transport-streamable-http-client-reqwest"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
chrono = "0.4"
dirs = "6"
reqwest = { version = "0.13", default-features = false, features = ["json", "stream"] }
futures-util = "0.3"
[[bin]]
name = "mcp-dashboard"
path = "src/main.rs"
[[bin]]
name = "mcp-latency"
path = "bench/mcp_latency.rs"