You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is it possible to support nightly version of rust? the main purpose is to build rocket web framework
Or if have supported, how to configure in meta-rust-bin?
Thanks,
The text was updated successfully, but these errors were encountered:
We don't currently support nightly, and there's a couple of reasons for that:
Right now generation of new releases is manual and it's unlikely we'd ever be able to keep up with daily updates. So automation of new releases would have to come first.
The versioning is messy because of how channel information is provided by rust-lang. We request https://static.rust-lang.org/dist/channel-rust-<version>.toml to get the manifest of files we need to download. You can absolutely request https://static.rust-lang.org/dist/channel-rust-nightly.toml, but unlike fixed release versions, that's going to change every day. That makes recreating past nightly releases difficult if not impossible. And in Yocto not being able to recreate a build is usually a bad thing, so not something we'd considered before.
Us old embedded developers are scared of anything that hasn't been released for at least a decade or so (mostly kidding)
That said, you are not out of luck! The build-new-version.sh script in the root of the repo will work just fine with nightly. So you can do
Is it possible to support nightly version of rust? the main purpose is to build rocket web framework
Or if have supported, how to configure in meta-rust-bin?
Thanks,
The text was updated successfully, but these errors were encountered: