linutil/Cargo.toml
Soapydev ad91d291e9 Set the optimisation for performance rather than size
Signed-off-by: Soapydev <alexandre.beauchamp.thibault@gmail.com>
2024-08-19 16:49:55 -04:00

31 lines
478 B
TOML

[package]
name = "tui"
version = "0.1.0"
edition = "2021"
[dependencies]
chrono = "0.4.33"
clap = { version = "4.5.13", features = ["derive"] }
crossterm = "0.27.0"
ego-tree = "0.6.2"
oneshot = "0.1.8"
portable-pty = "0.8.1"
ratatui = "0.27.0"
tui-term = "0.1.12"
include_dir = "0.7.4"
tempdir = "0.3.7"
[[bin]]
name = "linutil"
path = "src/main.rs"
[profile.release]
opt-level = 3
debug = false
lto = true
codegen-units = 1
panic = "abort"
strip = true
incremental = false