summaryrefslogtreecommitdiffstats
path: root/Cargo.toml
blob: 7dda380119995fd4327fce1bb89d1ae0fdf32413 (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
57
58
59
60
61
62
63
64
65
66
[package]
name = "fm-tui"
version = "0.1.21"
authors = ["Quentin Konieczko <qu3nt1n@gmail.com>"]
edition = "2021"
license-file = "LICENSE.txt"
description = "A TUI file manager inspired by dired and ranger"
readme = "readme.md"
repository = "https://github.com/qkzk/fm"
keywords = ["tui", "file-manager", "file", "manager", "tuikit"]
categories = ["command-line-utilities", "filesystem", "os::unix-apis"]
documentation = "https://docs.rs/fm-tui/latest/"

[profile.release]
strip = true  # Automatically strip symbols from the binary.
lto = true # instructs the linker to optimize at the link stage.

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[[bin]]
name = "fm"
path = "src/main.rs"

[lib]
name = "fm"
path = "src/lib.rs"

[build-dependencies]
shellexpand = "2.1.2"
fs_extra = "1.2.0"

[dependencies]
anyhow = "1.0.28"
chrono = "0.4.22"
clap = { version = "4.0.2", features = ["derive"] }
content_inspector = "0.2.4"
copypasta = "0.8.1"
flate2 = "1.0"
fs_extra = "1.2.0"
futures = "0.3"
gag = "1.0.0"
indicatif = { version = "0.17.1", features= ["in_memory"] }
log = { version = "0.4.0", features = ["std"] }
log4rs = {version = "1.2.0", features = ["rolling_file_appender", "compound_policy", "size_trigger", "fixed_window_roller"] }
nvim-rs = { version = "0.3", features = ["use_tokio"] }
pathdiff = "0.2.1"
pdf-extract = "0.6.4"
rand = "0.8.5"
regex = "1.6.0"
rust-lzma = "0.5.1"
sanitize-filename = "0.4.0"
serde_yaml = "0.9.13"
shellexpand = "2.1.2"
skim-qkzk = "0.9.12"
strfmt = "0.2.2"
strum = {version = "0.24.1", features = ["derive"]}
strum_macros = "0.24.3"
syntect = "5.0.0"
sysinfo = "0.29.0"
tar = "0.4.38"
tuikit = "0.5.0"
url-escape = "0.1.1"
users = "0.11.0"
zip = "0.6.4"
tokio = "1"
ueberzug = "0.1.0"
which = "4.4.0"