-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
44 lines (41 loc) · 1.54 KB
/
Cargo.toml
File metadata and controls
44 lines (41 loc) · 1.54 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
# 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 = "2024"
rust-version = "1.85"
license = "MIT"
name = "filectrl"
readme = "README.md"
repository = "https://github.com/andornaut/filectrl"
version = "0.3.2"
[dependencies]
anyhow = "1.0.102"
argh = "0.1.19"
chrono = {version = "0.4.44", default-features = false, features = ["clock"]}
cli-clipboard = "0.4.0" # TODO: investigate arboard as an alternative
env_logger = {version = "0.11.10", default-features = false}
directories = "6.0.0"
log = {version = "0.4.29", default-features = false, features = ["serde"]}
nix = {version = "0.31.2", default-features = false, features = ["user"]}
notify = "8.2.0"
ratatui-textarea = {version = "0.8.0", features = ["crossterm"]}
ratatui = {version = "0.30.0", features = ["serde"]}
serde = {version = "1.0.228", features = ["derive"]}
textwrap = "0.16.2"
toml = "1.1.2"
unicode-segmentation = "1.13.2"
unicode-width = "0.2.2"
unix_mode = "0.1.4"
shell-words = "1.1.1"
[dev-dependencies]
cargo-husky = {version = "1.5.0", default-features = false, features = ["precommit-hook", "run-cargo-test", "run-cargo-check"]}
test-case = "3.3.1"
[profile.release]
codegen-units = 1 # Reduce number of codegen units to increase optimizations.
lto = true # Enable Link Time Optimization
opt-level = 3 # Optimize for performance
panic = 'abort' # Abort on panic
strip = true # Symbols from Binary