chore: Enable aggressive binary size optimization

This commit is contained in:
spinline
2026-01-30 01:40:45 +03:00
parent 6f888f1630
commit 5c4815fb15

View File

@@ -1,3 +1,11 @@
[workspace] [workspace]
members = ["backend", "frontend"] members = ["backend", "frontend"]
resolver = "2" resolver = "2"
# Optimize for size (aggressive)
[profile.release]
opt-level = "z"
lto = true
codegen-units = 1
panic = "abort"
strip = true