-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
43 lines (33 loc) · 912 Bytes
/
Cargo.toml
File metadata and controls
43 lines (33 loc) · 912 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
[package]
name = "moon-commander"
version = "1.0.0"
edition = "2021"
[[bin]]
name = "moon-commander"
path = "src/main.rs"
[dependencies]
ratatui = { version = "0.28", features = ["crossterm", "serde"] }
crossterm = { version = "0.27", features = ["event-stream"] }
tokio = { version = "1.34", features = ["full", "tracing"] }
tokio-util = "0.6"
futures = "0.3"
anyhow = "1.0"
thiserror = "1.0"
walkdir = "2.3"
ignore = "0.4"
notify = "6.1"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
toml = "0.8"
config = "0.14"
clap = { version = "4.4", features = ["derive", "color"] }
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
uuid = { version = "1.6", features = ["v4", "serde"] }
chrono = { version = "0.4", features = ["serde"] }
once_cell = "1.18"
string-interner = "0.17"
dirs = "5.0"
unicode-width = "0.1"
[dev-dependencies]
tempfile = "3.8"