-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
25 lines (23 loc) · 773 Bytes
/
Cargo.toml
File metadata and controls
25 lines (23 loc) · 773 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
[package]
name = "sysutils-stdio-rust"
version = "0.2.0"
edition = "2024"
description = "System Utilities MCP Stdio transport in Rust"
license = "MIT"
repository = "https://github.com/xbill9/iap-https-rust"
[dependencies]
anyhow = "^1.0.98"
rmcp = { version = "0.14.0", features = ["server", "macros", "transport-io"] }
serde = { version = "^1.0.219", features = ["derive"] }
serde_json = "^1.0.140"
schemars = "1"
sysinfo = "0.37.2"
tokio = { version = "^1.46.0", features = ["macros", "rt-multi-thread", "signal"] }
tracing = "^0.1.41"
tracing-subscriber = { version = "^0.3.19", 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"