Files
pacdef_rust/Cargo.toml
T
timeshifter 2b9e82e5a1 reduce compile time
disabling LTO and optimizing for size cuts compile time almost in half,
but increases the binary size from 2.1 to 2.5 MB.
this tradeoff is worth it.
performance is unaffected
2023-01-14 18:19:53 +01:00

27 lines
463 B
TOML

[package]
name = "pacdef"
version = "0.1.0"
edition = "2021"
[dependencies]
alpm = "*"
anyhow = "*"
# clap 4 until (at least) 4.0.32 have scrapped actual color support. we stay on 3.x until that's fixed.
clap = "3.*"
path-absolutize = "*"
regex = "*"
serde_json = "*"
serde_yaml = "*"
serde_derive = "*"
serde = "*"
pacdef_macro = {path = "pacdef_macro/"}
[profile.release]
lto = "off"
opt-level = "z"
strip = true
[[bin]]
name = "pacdef"
path = "src/main.rs"