-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathCargo.toml
More file actions
56 lines (51 loc) · 1.72 KB
/
Copy pathCargo.toml
File metadata and controls
56 lines (51 loc) · 1.72 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
45
46
47
48
49
50
51
52
53
54
55
56
[package]
name = "tmux-mcp-rs"
version = "0.5.0"
edition = "2021"
description = "Tmux MCP server in Rust"
readme = "README.md"
homepage = "https://github.com/bnomei/tmux-mcp"
documentation = "https://docs.rs/tmux-mcp-rs"
license = "MIT"
repository = "https://github.com/bnomei/tmux-mcp"
keywords = ["tmux", "mcp", "cli", "automation", "agent"]
categories = ["command-line-utilities", "development-tools"]
rust-version = "1.70"
[lib]
name = "tmux_mcp_rs"
path = "src/lib.rs"
[[bin]]
name = "tmux-mcp-rs"
path = "src/main.rs"
[features]
default = ["rayon", "rapidfuzz", "interactive", "special-keys"]
rayon = ["dep:rayon"]
rapidfuzz = ["dep:rapidfuzz"]
fuzzy = ["rapidfuzz"]
# Raw input tools (send-keys, send-hex, paste-text). Disable for a hardened
# build where shell input must go through the filtered execute-command path.
interactive = []
# Special-key tools (send-enter, send-tab, arrows, etc.). Disable to remove
# them from the binary entirely.
special-keys = []
[dependencies]
rmcp = { version = "1.2", default-features = false, features = ["server", "transport-io", "macros", "base64"] }
tokio = { version = "1", features = ["fs", "io-util", "macros", "process", "rt-multi-thread", "signal", "sync", "time"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
schemars = "1.2"
thiserror = "2"
uuid = { version = "1", features = ["v4"] }
clap = { version = "4", features = ["derive"] }
toml = "0.9"
regex = "1"
once_cell = "1"
tracing = "0.1"
tracing-subscriber = { version = "0.3", default-features = false, features = ["env-filter", "fmt", "registry", "std"] }
shell-words = "1"
libc = "0.2"
tempfile = "3"
rayon = { version = "1", optional = true }
rapidfuzz = { version = "0.5", optional = true }
[dev-dependencies]
rstest = "0.26"