summaryrefslogtreecommitdiffstats
path: root/Cargo.toml
blob: 3ccaf0fcd2b6fbe697e2b8131f7b1da380cac79b (plain)
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
[package]
name = "felix"
version = "2.12.1"
authors = ["Kyohei Uto <im@kyoheiu.dev>"]
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.3.3"
natord = "1.0.9"
log = "0.4.19"
simplelog = "0.12.1"
content_inspector = "0.2.4"
crossterm = "0.26.1"
serde_yaml = "0.9.25"
zip = "0.6.6"
tar = "0.4.39"
flate2 = "1.0.26"
lzma-rs = "0.3.0"
zstd = "0.12.4"
unicode-width = "0.1.10"
git2 = {version = "0.18.0", default-features = false }

[dev-dependencies]
bwrap = { version = "1.3.0", features = ["use_std"] }
devtimer = "4.0.1"
rayon = "1.7.0"

[target.'cfg(unix)'.dependencies]
nix = {version = "0.26.2", features = ["process"]}

[dependencies.serde]
version = "1.0.181"
features = ["derive"]

[dependencies.chrono]
version = "0.4.26"
default-features = false
features = ["clock"]