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
Hi, the rust standard library is going to remove the unstable #![feature(raw_vec_internals] (RawVec) feature in upcoming nightlies (see rust-lang/rust#90542) since it was only for compiler-internal use and not on a path to stabilization.
A crater run found that this crate uses it and will be broken by the removal. You may want to switch to Box<[MaybeUninit<T>]>, Vec or the Allocator API instead.
The text was updated successfully, but these errors were encountered:
Hi, the rust standard library is going to remove the unstable
#![feature(raw_vec_internals]
(RawVec
) feature in upcoming nightlies (see rust-lang/rust#90542) since it was only for compiler-internal use and not on a path to stabilization.A crater run found that this crate uses it and will be broken by the removal. You may want to switch to
Box<[MaybeUninit<T>]>
,Vec
or theAllocator
API instead.The text was updated successfully, but these errors were encountered: