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
This is a note that summarizes some changes that would be needed to move stwo into a more recent nightly version of Rust.
slice_flatten feature used to be defined over flatten. It has been changed to be over as_flattened and has been stablized.
target_feature = "avx2f" would be considered incorrect. Use target_feature = "avx2" instead
slice_group_by feature used to be defined over group_by. It has been changed to be over chunk_by and has been stablized.
One .collect::<Result<_, _>>()? would be considered incompatible with future version because the compiler thinks it would fail if ! and () are no longer considered the same type. This compiler's complaint can be addressed by changing it to .collect::<Result<(), _>>()?.
array_methods, slice_group_by, slice_flatten, stdsimd, slice_first_last_chunk doesn't need to be brought up as features in the lib.rs.
This is a note that summarizes some changes that would be needed to move stwo into a more recent nightly version of Rust.
slice_flatten
feature used to be defined overflatten
. It has been changed to be overas_flattened
and has been stablized.slice_group_by
feature used to be defined overgroup_by
. It has been changed to be overchunk_by
and has been stablized..collect::<Result<_, _>>()?
would be considered incompatible with future version because the compiler thinks it would fail if ! and () are no longer considered the same type. This compiler's complaint can be addressed by changing it to.collect::<Result<(), _>>()?
.array_methods
,slice_group_by
,slice_flatten
,stdsimd
,slice_first_last_chunk
doesn't need to be brought up as features in the lib.rs.Remaining issues:
The text was updated successfully, but these errors were encountered: