Rust Performance Tips to Study!
I have READ Cheap tricks for high-performance Rust by Pascal Hertleif.
It has some tips for FASTER programs written in Rust.
Among the TOPICS it covers are link-time optimization (LTO), using one chunk per crate when compiling, targeting a specific CPU, and using a different allocator like jemalloc or mimalloc.
I must STUDY these techniques!