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
I have tried to add this crate to an empty project with rust nightly.
When trying to build compilation fails with error: error[E0658]: use of unstable library feature 'renamed_spin_loop'
It also recommends to add the crate attribute #![feature(renamed_spin_loop)]
However, adding this to my crate does nothing.
I have then tried to clone this crate and build it directly.
This causes the same error.
However compilation is successfull after adding the crate attribute to the top of uart_16550's lib.rs.