dada-lang / dada

I speak only of myself since I do not wish to convince, I have no right to drag others into my river, I oblige no one to follow me and everybody practices his art in his own way.
https://dada-lang.org
Apache License 2.0
444 stars 28 forks source link

Upgrade ahash #231

Closed brson closed 9 months ago

brson commented 9 months ago

This avoids a compile error from the nightly removal of the stdsimd feature:

$ cargo test
warning: `/home/brian/dada/.cargo/config` is deprecated in favor of `config.toml`
note: if you need to support cargo 1.38 or earlier, you can symlink `config` to `config.toml`
   Compiling ahash v0.7.6
   Compiling crossbeam-channel v0.5.8
error[E0635]: unknown feature `stdsimd`
  --> /home/brian/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ahash-0.7.6/src/lib.rs:33:42
   |
33 | #![cfg_attr(feature = "stdsimd", feature(stdsimd))]
   |                                          ^^^^^^^

For more information about this error, try `rustc --explain E0635`.
error: could not compile `ahash` (lib) due to 1 previous error
warning: build failed, waiting for other jobs to finish...
netlify[bot] commented 9 months ago

Deploy Preview for dada-lang ready!

Name Link
Latest commit 762f7cfd3f16953e6a371c67efb5ec19061ad014
Latest deploy log https://app.netlify.com/sites/dada-lang/deploys/65d16c9be20ade000868f29c
Deploy Preview https://deploy-preview-231--dada-lang.netlify.app
Preview on mobile
Toggle QR Code...

QR Code

Use your smartphone camera to open QR code link.

To edit notification comments on pull requests, go to your Netlify site configuration.

brson commented 9 months ago

The failure is some fresh nightly clippy stuff. I'm ignoring it for now.