Hacker News new | ask | show | jobs
by vlovich123 279 days ago
Rust has solved the problem of upgrading at the language level - you can mix’n’match modules targeting different revisions of the language just fine and you can mix’n’match multiple versions of the same library within a single binary. It makes the whole thing possible to do piecemeal.
1 comments

Only if there are no incompatible changes on the standard library, public interface or observable semantic behaviours.

And even so, it doesn't matter if IT says no, or the customer doesn't pay for consulting services to upgrade existing projects.

I’ve never seen IT be involved in a decision about the language edition being selected by a development team or even which dependency to pick. As for consulting, that’s a different type of world that’s not the best example of good software development practices.

As for incompatible changes, there aren’t any in Rust by design. That limits some of the changes they can make even in an edition but in practice it works ok. Even over a longer time span, I think the Rust community will figure out a way to trim irrelevant cruft away.

It happens all the time, in many companies IT decides the images used on the build servers, or cloud instances for developers.

I am not so optimistic when Rust achieves a similar market share and historical baggage, as C and C++ have today, growing since the 1970's.

It is of course better designed, and with better tooling, that doesn't spare it from market forces and companies sponsoring the foundation.

See where Linux foundation is today for a comparable example.