OpenWeatherWidget/Cargo.toml
Candifloss 5571bf6db9 Reduce binary size
- Adjust `Cargo.toml` to reduce binary size in `release` pofile
2025-12-12 19:15:58 +05:30

13 lines
189 B
TOML

[workspace]
resolver = "3"
members = [
"owm_widg_config", "weatherd",
"widget",
]
[profile.release]
lto = "thin"
codegen-units = 1
strip = "symbols"
opt-level = "z"
panic = "abort"