optimize the options in Cargo.toml on the release and bench profiles to guide code compilation
consider:
- link time optimization
- opt-level
- debug info removal
- codegen units
etc.
the release profile should have settings that don't affect compilation time that much, enabling lto for everyone is probably not a good idea
optimize the options in
Cargo.tomlon thereleaseandbenchprofiles to guide code compilationconsider:
etc.
the release profile should have settings that don't affect compilation time that much, enabling lto for everyone is probably not a good idea