-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
52 lines (47 loc) · 1.48 KB
/
Cargo.toml
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
# https://doc.rust-lang.org/cargo/reference/manifest.html
[package]
authors = ["andornaut"]
description = """
FileCTRL is a light, opinionated, responsive, theme-able, and simple Text User Interface (TUI) file manager for Linux and macOS
"""
edition = "2021"
license = "MIT"
name = "filectrl"
readme = "README.md"
repository = "https://github.com/andornaut/filectrl"
version = "0.1.0"
[dependencies]
anyhow = "~1.0"
arboard = {version = "3.2.1", default-features = false}
argh = "0.1"
chrono = {version = "0.4", default-features = false, features = ["clock", "time"]}
color-to-tui = "0.3"
crossterm = "0.26"
env_logger = { version = "0.10.0", default-features = false }
etcetera = "0.8"
log = { version = "0.4.20", default-features = false, features = ["serde"] }
open = "~5.0"
ratatui = {version = "0.23", features = ["all-widgets"]}
regex = "~1.9"
serde = "~1.0"
toml = "0.7"
tui-input = "0.7"
unicode-segmentation = "~1.10"
unicode-width = "0.1"
unix_mode = "0.1"
[dependencies.nix]
default-features = false
features = ["user"]
version = "0"
[dev-dependencies]
test-case = "~3.1"
[dev-dependencies.cargo-husky]
default-features = false # Disable features which are enabled by default
features = ["precommit-hook", "run-cargo-test", "run-cargo-check"]
version = "1"
[profile.release]
codegen-units = 1 # Reduce number of codegen units to increase optimizations.
lto = true # Enable Link Time Optimization
opt-level = 'z' # Optimize for size.
panic = 'abort' # Abort on panic
strip = true # Symbols from Binary