summaryrefslogtreecommitdiffstats
path: root/Cargo.toml
blob: 5c451a41b96eeaa94dd1a12a9f0ae95e0f8ddecc (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
55
56
[package]
name = "joshuto"
version = "0.9.4"
authors = ["Jiayi Zhao <jeff.no.zhao@gmail.com>"]
description = "Terminal file manager inspired by ranger"
homepage = "https://github.com/kamiyaa/joshuto"
repository = "https://github.com/kamiyaa/joshuto"
license = "LGPL-3.0"
edition = "2021"
keywords = ["tui-rs", "ranger", "file manager", "termion"]

[dependencies]
ansi-to-tui = { version = "^3", optional = true }
alphanumeric-sort = "^1"
chrono = "^0"
colors-transform = "^0"
dirs-next = "^2"
filetime = "^0"
globset = "^0"
lazy_static = "^1"
libc = "^0"
notify = "^6"
open = "^5"
phf = { version = "^0", features = ["macros"], optional = true }
rand = "^0"
rustyline = "^12"
serde = "^1"
serde_derive = "^1"
shell-words = "^1"
shellexpand = { version = "^3", features = ["full"]}
signal-hook = "^0"
structopt = "^0"
termion = "^2"
toml = "^0"
trash = { version = "^3", optional = true }
tui = { version = "0.21", default-features = false, features = [
  "termion",
], package = "ratatui" }
unicode-segmentation = "^1"
unicode-width = "^0"
users = "^0"
whoami = "^1"
xdg = "^2"
walkdir = "^2"

[dependencies.uuid]
version = "^1"
features = ["v4", "fast-rng", "macro-diagnostics"]

[features]
devicons = ["phf"]
file_mimetype = []
mouse = []
recycle_bin = ["trash"]
syntax_highlight = ["ansi-to-tui"]
default = ["devicons", "recycle_bin", "syntax_highlight"]