-
Notifications
You must be signed in to change notification settings - Fork 1
Open
Description
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:
Cargo.toml
Acceptance criteria:
- Release profile added with optimizations
-
opt-level = 3set -
lto = trueset -
strip = trueset (if supported) - Binary size and performance improved
Implementation notes:
- Add
[profile.release]section toCargo.toml - Set optimization level to 3
- Enable link-time optimization (LTO)
- Add strip option if available
- Measure binary size and performance improvements
Metadata
Metadata
Assignees
Labels
No labels