Compiling on the latest Rust nightly results in the following error:
error[E0635]: unknown feature `array_chunks`
--> C:\Users\admin\.cargo\registry\src\index.crates.io-1949cf8c6b5b557f\simd_cesu8-1.0.1\src\lib.rs:4:13
|
4 | feature(array_chunks, portable_simd, error_in_core)
| ^^^^^^^^^^^^
This is because the array_chunks
feature has been removed from the Rust compiler. The upstream change was introduced in this PR:
rust-lang/rust#143289
"Remove [T]::array_chunks(_mut)"