-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
55 lines (42 loc) · 1021 Bytes
/
Cargo.toml
File metadata and controls
55 lines (42 loc) · 1021 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
[package]
name = "clash"
version = "1.35.6"
edition = "2021"
[dependencies]
# Core TUI
ratatui = "0.29"
crossterm = { version = "0.28", features = ["event-stream"] }
# Async
tokio = { version = "1", features = ["full"] }
futures = "0.3"
# Serialization
serde = { version = "1", features = ["derive"] }
serde_json = "1"
toml = "0.8"
# CLI
clap = { version = "4", features = ["derive"] }
# Error handling
thiserror = "2"
color-eyre = "0.6"
# TUI widgets
tui-big-text = "0.7"
tui-input = { version = "0.12", default-features = false }
# Logging
tracing = "0.1"
tracing-subscriber = "0.3"
# Filesystem
notify-debouncer-full = "0.4"
dirs = "6"
# PTY for session attach
nix = { version = "0.29", features = ["term", "process", "signal", "poll", "fs"] }
libc = "0.2"
# Encoding
base64 = "0.22"
# Terminal emulator (for inline session rendering)
vt100 = "0.15"
# Data
chrono = { version = "0.4", features = ["serde"] }
uuid = { version = "1", features = ["v7"] }
[dev-dependencies]
tempfile = "3"
tokio-test = "0.4"