-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathCargo.toml
More file actions
35 lines (30 loc) · 936 Bytes
/
Cargo.toml
File metadata and controls
35 lines (30 loc) · 936 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
32
33
34
35
[package]
name = "mcp-windbg-rs"
version = "0.2.0"
edition = "2021"
authors = ["MCP WinDbg Contributors"]
description = "A high-performance Model Context Protocol server for Windows crash dump analysis"
license = "AGPL-3.0-or-later"
repository = "https://github.com/yourusername/mcp-windbg-rs"
[[bin]]
name = "mcp-windbg-rs"
path = "src/main.rs"
[dependencies]
tokio = { version = "1.40", features = ["full"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
thiserror = "2.0"
anyhow = "1.0"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
clap = { version = "4.5", features = ["derive"] }
rmcp = { version = "0.8.5", features = ["transport-io", "server"] }
[target.'cfg(windows)'.dependencies]
winreg = "0.55"
[dev-dependencies]
tokio-test = "0.4"
tempfile = "3.8"
criterion = { version = "0.5", features = ["html_reports"] }
[[bench]]
name = "benchmarks"
harness = false