Priority: Low
Labels: build, optimization
Description:
Add release profile to Cargo.toml with optimizations. Set opt-level = 3, lto = true for smaller, faster binaries. Add strip = true for release builds.
Files to modify:
Acceptance criteria:
Implementation notes:
- Add
[profile.release] section to Cargo.toml
- Set optimization level to 3
- Enable link-time optimization (LTO)
- Add strip option if available
- Measure binary size and performance improvements