Migration to v1.1.1
These are the steps to migrate from v1.1.0 to v1.1.1.
Update AGENTS.md Code Guidelines
Update the # Code Guidelines section in your src/AGENTS.md file:
- Optimize for performance; use zero-cost abstractions, avoid allocations.
+ Optimize for performance; use zero-cost abstractions, avoid allocations. Use arrays instead of maps if size is known ahead of time.
+ Optimize for memory. Preallocate or trim if possible. Minimize memory use. Use smaller integers/types where appropriate. Use any other tricks that improve CPU or memory efficiency.
Update Template Version Marker
Update .github/template-version.txt to reflect the new version:
- reloaded-templates-rust:1.1.0
+ reloaded-templates-rust:1.1.1