-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
67 lines (63 loc) · 1.75 KB
/
Cargo.toml
File metadata and controls
67 lines (63 loc) · 1.75 KB
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
67
[package]
name = "fcd"
version = "1.0.1"
edition = "2021"
authors = ["Franco Bugnano <franco@bugnano.it>"]
license = "GPL-3.0-or-later"
description = "The FCD File Manager (FranCommanDer) - a text based file manager that combines the best features of Midnight Commander and Ranger"
repository = "https://github.com/bugnano/fcd"
readme = "README.md"
keywords = ["file-manager", "orthodox", "commander", "tui", "ratatui"]
categories = ["command-line-utilities", "filesystem"]
include = [
"src/**/*.rs",
"src/**/*.sql",
"Cargo.toml",
"Cargo.lock",
"config/config.toml",
]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
termion = "4"
ratatui = { version = "0.29", default-features = false, features = ["termion", "serde"] }
crossbeam-channel = "0.5"
signal-hook = "0.3"
anyhow = "1"
log = "0.4"
env_logger = "0.11"
clap = { version = "4", features = ["derive", "cargo"] }
encoding_rs = "0.8"
#syntect = { version = "5", default-features = false, features = ["default-fancy"] }
syntect = "5"
#bat = { version = "0.25", default-features = false, features = ["regex-fancy"] }
bat = { version = "0.25", default-features = false, features = ["regex-onig"] }
serde = "1"
toml = "0.8"
xdg = "2"
libc = "0.2"
unicode-width = "0.2"
unicode-normalization = "0.1"
regex = "1"
uzers = "0.12"
path-clean = "1"
caseless = "0.2"
chrono = "0.4"
nucleo-matcher = "0.3"
natord = "1"
atomicwrites = "0.4"
home = "0.5"
tempfile = "3"
wait-timeout = "0.2"
shlex = "1"
pathdiff = "0.2"
itertools = "0.14"
thousands = "0.2"
rusqlite = { version = "0.32", features = ["bundled"] }
rustix = { version = "0.38", features = ["fs"] }
[profile.release]
strip = true
lto = true
codegen-units = 1
panic = "abort"
[lints.clippy]
option_map_unit_fn = "allow"