-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
41 lines (37 loc) · 906 Bytes
/
Cargo.toml
File metadata and controls
41 lines (37 loc) · 906 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
36
37
38
39
40
41
[package]
name = "tmuxpanel"
version = "0.1.1"
edition = "2021"
description = "A full-fledged TUI plugin panel for tmux — the modern alternative to TPM"
license = "MIT"
readme = "README.md"
repository = "https://github.com/marlocarlo/Tmux-Plugin-Panel"
keywords = ["tmux", "plugin", "manager", "tui", "terminal"]
categories = ["command-line-utilities"]
exclude = [
"target/",
"packages/",
"scoop/",
"scripts/",
".github/",
"icon.svg",
]
[[bin]]
name = "tmuxpanel"
path = "src/main.rs"
[[bin]]
name = "tmuxplugins"
path = "src/main.rs"
[[bin]]
name = "tmuxthemes"
path = "src/main.rs"
[dependencies]
ratatui = "0.29"
crossterm = "0.28"
tokio = { version = "1", features = ["full"] }
reqwest = { version = "0.12", default-features = false, features = ["json", "rustls-tls"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
regex = "1"
dirs = "6"
anyhow = "1"