Comment by stymaar
2 days ago
> But on the other hand, the compile time of Rust is really counterproductive.
Since it's going to be mostly cargo check and incremental builds, I don't think it matters in practice.
2 days ago
> But on the other hand, the compile time of Rust is really counterproductive.
Since it's going to be mostly cargo check and incremental builds, I don't think it matters in practice.
Even incremental builds can be slow depending on eg. what macros you use. For example, i had bad surprises with askama which is a delight in most cases, but really makes compilation slower as you add more templates. On a project with ~20 templates, incremental build in debug mode now takes ~40s on a very fast machine.