tkaitchuck / aHash

aHash is a non-cryptographic hashing algorithm that uses the AES hardware instruction
https://crates.io/crates/ahash
Apache License 2.0
986 stars 94 forks source link

rust v1.78 std simd feature removed #227

Closed jianshu93 closed 3 months ago

jianshu93 commented 3 months ago

Hello Team,

When I was compiling hashbrown under nightly rust 1.78 and 1.79, which relies on ahash, 0.8.6, I have the following error:

error[E0635]: unknown feature stdsimd --> /storage/home/hcoda1/4/jzhao399/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ahash-0.8.6/src/lib.rs:99:42 | 99 | #![cfg_attr(feature = "stdsimd", feature(stdsimd))]

Now it is called "portable-simd"

Thanks,

Jianshu

tkaitchuck commented 3 months ago

Yes. This was fixed in 0.8.7. If you update to the latest in the 0.8 branch it should be fully compatible