summaryrefslogtreecommitdiffstats
path: root/Cargo.toml
blob: 3cc65f1297e8ff3fac414dcb5d35a973090437cf (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
[package]
name = "joshuto"
version = "0.7.0"
authors = ["Jiayi Zhao <jeff.no.zhao@gmail.com>"]
description = "Terminal file manager inspired by ranger"
homepage = "https://github.com/kamiyaa/joshuto"
license = "LGPL-3"

[dependencies]
clap = "2.32.0"
chrono = "0.4.6"
fs_extra = "1.1.0"
lazy_static = "1.2.0"
libc = "0.2.46"
mime = "0.3.13"
mime-detective = "0.2.1"
serde = "1.0.84"
serde_derive = "1.0.84"
toml = "0.4.10"
wcwidth = "1.0.1"
whoami = "0.4.1"
xdg = "2.2.0"

# clap = "*"
# fs_extra = "*"
# lazy_static = "*"
# libc = "*"
# mime_guess = "1.8.6"
# serde = "*"
# serde_derive = "*"
# toml = "*"
# wcwidth = "*"
# whoami = "*"
# xdg = "*"

[dependencies.ncurses]
version = "5.98.0"
features = [ "extended_colors", "panel" ]

[dependencies.wordexp]
version = "0.1.0"
path = "lib/wordexp-rs"

[features]
default = []