I think I prefer explicitly importing preludes in general. Nice talk.
@wyattherkamp715411 ай бұрын
I find the lang item for Box extremely weird. Is anything preventing Box from being a normal type?
@foehammer212711 ай бұрын
What utility would the standard library being part of cargo actually have?
@linusdikomey161111 ай бұрын
Interesting talk! How does all of this affect compilation times?
@ferdynandkiepski502611 ай бұрын
4:23 you said that sqrt of a floating point can be rewritten with inline assembly. Unless I'm misunderstanding how rustc handles inline assembly I believe that this would make it impossible for the compiler to vectorize it. The thing with intrinsics currently is that they're such a mess that it's hard to say where they should go so that users can find them if you want to remove them from the std library.
@unalive_me11 ай бұрын
I actually really like that idea for adding preludes for crates that automatically get brought into scope. I think as long as the user of the crate has to opt in to use the prelude, I wouldn't have any issues with it. I feel like that is something that I enjoy about Rust's std lib so I think it would be a great addition for any crate to be able to provide that option too.
@kelownatechkid11 ай бұрын
This is really interesting. Thank you for the presentation!
@TheMCMaster11 ай бұрын
From your talk, it sounds like making the standard library just a regular crate is the destination, but the journey will only make everything better!
@whatbirdisthat11 ай бұрын
Stability attributes feel very Rust-y and if I had a dollar for every time I got a deprecated warning with zero information as to what to use instead!! Like, 30+ years of those! Thank you for the talk and those great ideas🎉
@aleksanderkrauze930411 ай бұрын
Great talk!
@jocketf308311 ай бұрын
I suddenly want all these things!
@aaronchen374811 ай бұрын
What languages treat standard library completely the same as user libraries?
@simonhartley915811 ай бұрын
Even if it doesn't get to 100%, there are benefits by aspiring to do so. Additionally by dogfooding, there's an incentive for the authors to make Rust as good as possible.
@JannisAdmek11 ай бұрын
zig :)
@leodog89611 ай бұрын
Deno
@spheenik11 ай бұрын
@jhpratt: Fantastic talk. Thank you.
@konkitoman11 ай бұрын
I really like this, the things i will like to be present in Rust 2024 is std as a crate and opt in prelude.
@jhpratt11 ай бұрын
Nothing for preludes would be tied to an edition. Nor will it be happening that quickly :)
@RiwenX11 ай бұрын
Interesting talk, thank you
@jamesl514911 ай бұрын
Crate preludes will be awesome. I'd prefer them to be opt-out than opt-in
@jhpratt11 ай бұрын
The problem then arises of a dependency adding/extending a prelude, causing your code to break.
@antoniong438011 ай бұрын
Opt-out preludes are what modpacks are for minecraft. You're bound to get surprising features by using someone else's prelude (modpack), but instead of up to 200 mods, it might be maybe even 800 features