Open
Description
I found that Rayon segfaults in my app after recently updating rustc
, so I ran cargo test
on that project. I ran git bisect
to narrow the commit down to a change from crossbeam-deque
from 0.7.2
to 0.8.0
. I suspected the compiler, but found that tests fail on each stable rustc
version back to 1.58.0
on my machine (MacOS 12.4, M1/aarch64).
Changing crossbeam-deque
to 0.7.4
fixes the tests. So I have evidence that it may need to be fixed here, although I haven't narrowed down the failure yet.