How to alleviate the pain of Rust compile times

from blog Reasonable Performance, | ↗ original
A few days ago, I wrote about two Rust pain points when using Rust at work. One of these points were the long compile times. In this post, I want to share a few tips that can help alleviate that pain. Use cargo check We typically use the compiler for two reasons: to verify if the syntax and/or types are correct and to generate a runnable program....