Aatch / ramp

RAMP - Rust Arithmetic in Multiple Precision
Apache License 2.0
263 stars 38 forks source link

Removal of `RawVec` from the rust standard library. #132

Open the8472 opened 2 years ago

the8472 commented 2 years ago

Hi, the rust standard library is going to remove the unstable #![feature(raw_vec_internals] (RawVec) feature in upcoming nightlies (see https://github.com/rust-lang/rust/pull/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.