| I think rust needs to slow down in this regard. I have been with Python since 1999 and the stdlib has held it back, I have also used Scala and Haskell and have witness the mess that platform libs on each have caused. What Rust has right now is pretty amazing. What needs to happen is a way for devs to easily break the dependency cycle and include multiple versions of the same crate. Something that has plagued Haskell. I dunno what the answer is, trait only crates, struct only crates? If people want to 'curate' (shop) a set of packages, they can make a meta package that exports its deps. There is literally no reason to ship libs with the compiler aside from the basic verbs and nouns. With verioned and properly name-spaced imports, one could use different curated libs. |
It's also one of the features I sorely miss when using Rust. Luckily, Rust's stdlib is starting to tend towards being more practical with recent additions like system time.