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
SNOS uses the unstable fn get_or_try_init() from once_cell, which causes the following compilation errors when compiled with a stable compiler version:
error[E0658]: use of unstable library feature 'once_cell_try'
This becomes a problem for downstream projects which want to use our crates with a stable compiler.
The text was updated successfully, but these errors were encountered:
Steps to reproduce:
Replace the
channel
in therust-toolchain
file:Description:
SNOS uses the unstable
fn get_or_try_init()
fromonce_cell
, which causes the following compilation errors when compiled with a stable compiler version:This becomes a problem for downstream projects which want to use our crates with a stable compiler.
The text was updated successfully, but these errors were encountered: