popcorn/Cargo.toml
candifloss 8343dc18f2 Configure profile.release to reduce binary size
- Strip symbols and stuff
- Also change default icon in OSD
2025-12-11 10:42:18 +05:30

14 lines
213 B
TOML

[workspace]
resolver = "3"
members = [
"crates/popcorn",
"crates/popcorn-d",
"crates/popcorn-conf",
]
[profile.release]
lto = "thin"
codegen-units = 1
strip = "symbols"
opt-level = "z"
panic = "abort"