BLOG: How I reduced (incremental) Rust compile times by up to 40% (www.coderemote.dev)
from snaggen@programming.dev to rust@programming.dev on 20 Mar 2024 07:03
https://programming.dev/post/11698049

Always good to read about how you can speed up compile times. I mean, sword fighting on office chairs are all fun, but still…

#rust

threaded - newest

secana@programming.dev on 20 Mar 2024 10:13 collapse

If that really works without any drawbacks, I hope it gets merged into Rust main.

calcopiritus@lemmy.world on 20 Mar 2024 11:50 collapse

At least one drawback I can see is that apparently the user has to manually opt-out some macros (the ones that aren’t pure) of the caching. Which would require everyone using the rust compiler to know which macros of which crates are pure and which ones not. I guess that the ones writing the macros could do that, but then you rely on library maintainers to know about this specific optimization.

It really should be opt-in so the maintainers of libraries that know about the optimization and know that their macro is pure can annotate them as so.

gopher_protocol@programming.dev on 20 Mar 2024 12:47 collapse

Right, if there was a way to mark them as pure (const fn?) that would solve it, mostly - as long as upstream crates started annotating their proc macros as such.