6 ms·
> When I update the rust compiler, I do so with very little fear. My code will still work. The rust stdlib backwards compatible story has been very solid. This
by ceteia 7mo ago
> When I update the rust compiler, I do so with very little fear. My code will still work. The rust stdlib backwards compatible story has been very solid.
This is not always true, as seen with rustc 1.80 and the time crate. While it only changed type inference, that still caused some projects like Nix a lot of trouble.
- TheDong 7mo agoThat caused compilation errors though, which are alright in my book, and don't increase my fear to update. Silent runtime changes are what spook me and what I've gotten more often with Go.