std::array::IntoIter is now stable, use that instead!. I will be maintaining this crate for the foreseeable future but plan on pushing an update that produces deprecation warnings in the future.
You can easily migrate off using comby.
sh
comby \
'array_iterator::ArrayIterator::new(:[args])' \
'std::array::IntoIter::new(:[args])' \
.rs -in-place
You can also remove the dependency. This can be done automatically using cargo-edit.
sh
cargo rm array_iterator
cargo check