-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
29 lines (27 loc) · 1.06 KB
/
Copy pathCargo.toml
File metadata and controls
29 lines (27 loc) · 1.06 KB
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
[package]
name = "sysutils-stdio-rust"
version = "0.3.0"
edition = "2024"
description = "A Model Context Protocol (MCP) server exposing local system information and disk usage to MCP clients over the stdio transport, built on rmcp 3."
license = "MIT"
repository = "https://github.com/xbill9/iap-https-rust"
homepage = "https://github.com/xbill9/iap-https-rust/tree/main/stdio"
readme = "README.md"
keywords = ["mcp", "rmcp", "stdio", "sysinfo", "llm"]
categories = ["command-line-utilities", "development-tools", "os"]
[dependencies]
anyhow = "^1.0.104"
rmcp = { version = "3.1.0", features = ["server", "macros", "transport-io"] }
serde = { version = "^1.0.229", features = ["derive"] }
serde_json = "^1.0.151"
schemars = "^1.2.2"
sysinfo = "0.39.6"
tokio = { version = "^1.53.1", features = ["macros", "rt-multi-thread", "signal"] }
tracing = "^0.1.44"
tracing-subscriber = { version = "^0.3.23", features = ["env-filter", "json", "tracing-log"] }
[profile.release]
opt-level = 3
lto = true
strip = true # Automatically strip symbols from the binary.
codegen-units = 1
panic = "abort"