A few months ago #64738 introduced const simd_insert/simd_extract, which I then integrated into my application via a fork of packed_simd.
However, upon upgrading to the latest nightly (rustc 1.42.0-nightly (0a58f5864 2020-01-02)), it was suddenly non-const.
Furthermore, It seems the ability to make it const via rustc_const_unstable is not possible in user applications, making the const versions of this effectively rustc internal-only now, breaking my fork of packed_simd and my application.
A few months ago #64738 introduced
constsimd_insert/simd_extract, which I then integrated into my application via a fork ofpacked_simd.However, upon upgrading to the latest nightly (
rustc 1.42.0-nightly (0a58f5864 2020-01-02)), it was suddenly non-const.Furthermore, It seems the ability to make it
constviarustc_const_unstableis not possible in user applications, making theconstversions of this effectively rustc internal-only now, breaking my fork ofpacked_simdand my application.