zowens / crc32c

Fast CRC-32-Castagnoli implementation in Rust

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Nightly build fails due to removal of the unstable `stdsimd` feature

LDeakin opened this issue · comments

The latest nightly breaks this crate on this line because the unstable stdsimd feature has been removed:

#![cfg_attr(nightly, feature(stdsimd))]

The commit removing stdsimd is rust-lang/rust@ea37e80
Relevant tracking issues? rust-lang/rust#27731 and rust-lang/rust#48556