-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathCargo.toml
56 lines (50 loc) · 1.16 KB
/
Cargo.toml
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 = "felix"
version = "2.16.0"
authors = ["Kyohei Uto <[email protected]>"]
edition = "2021"
description = "tui file manager with vim-like key mapping"
readme = "README.md"
repository = "https://github.com/kyoheiu/felix"
license = "MIT"
keywords = ["tui", "crossterm", "file-manager"]
categories = ["command-line-utilities", "filesystem"]
exclude = [
"testfiles/*"
]
[[bin]]
name = "fx"
path = "src/main.rs"
test = true
bench = false
[dependencies]
dirs = "5.0.1"
walkdir = "2.5.0"
natord = "1.0.9"
log = "0.4.22"
simplelog = "0.12.2"
content_inspector = "0.2.4"
crossterm = "0.28.1"
serde_yaml = "0.9.34"
zip = "2.2.0"
tar = "0.4.42"
flate2 = "1.0.34"
lzma-rs = "0.3.0"
zstd = "0.13.2"
unicode-width = "0.2.0"
git2 = {version = "0.19.0", default-features = false }
normpath = "1.3.0"
tempfile = "3.15.0"
[dev-dependencies]
bwrap = { version = "1.3.0", features = ["use_std"] }
devtimer = "4.0.1"
rayon = "1.10.0"
[target.'cfg(unix)'.dependencies]
nix = {version = "0.29.0", features = ["process", "fs", "user"]}
[dependencies.serde]
version = "1.0.210"
features = ["derive"]
[dependencies.chrono]
version = "0.4.38"
default-features = false
features = ["clock"]