feat: enable basic binary size reduction options

This commit is contained in:
2025-07-24 15:39:16 -05:00
parent 829462d3b6
commit f41c550bb8

View File

@@ -19,6 +19,12 @@ thiserror = "1.0"
anyhow = "1.0"
glam = "0.30.4"
[profile.release]
lto = true
panic = "abort"
panic-strategy = "abort"
opt-level = "z"
[target.'cfg(target_os = "windows")'.dependencies.winapi]
version = "0.3"
features = ["consoleapi", "fileapi", "handleapi", "processenv", "winbase", "wincon", "winnt", "winuser", "windef", "minwindef"]