-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
44 lines (41 loc) · 1.13 KB
/
Copy pathCargo.toml
File metadata and controls
44 lines (41 loc) · 1.13 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
[workspace]
resolver = "2"
members = [
"crates/linux-mcp",
"crates/linux-mcp-core",
]
[workspace.package]
version = "0.1.0"
edition = "2021"
rust-version = "1.80"
license = "MIT"
authors = ["Michael Adam Groberman"]
repository = "https://github.com/MichaelAdamGroberman/linux-mcp"
homepage = "https://github.com/MichaelAdamGroberman/linux-mcp"
readme = "README.md"
[workspace.dependencies]
rmcp = { version = "1.7", features = ["server", "transport-io", "macros"] }
tokio = { version = "1", features = ["macros", "rt-multi-thread", "io-std", "process", "fs", "time", "sync"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
schemars = "1"
anyhow = "1"
thiserror = "2"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter", "json"] }
chrono = { version = "0.4", default-features = false, features = ["clock", "serde"] }
base64 = "0.22"
notify = "8"
fs_extra = "1.3"
async-trait = "0.1"
walkdir = "2"
glob = "0.3"
xattr = "1"
nix = { version = "0.31", features = ["signal", "user", "process"] }
url = "2"
which = "8"
[profile.release]
lto = "thin"
codegen-units = 1
strip = "symbols"
panic = "abort"