fix(deps): update rust crate rayon to 1.7.0
This MR contains the following updates:
Package | Type | Update | Change |
---|---|---|---|
rayon | dependencies | minor |
1.6.1 -> 1.7.0
|
Release Notes
rayon-rs/rayon
v1.7.0
- The minimum supported
rustc
is now 1.59. - Added a fallback when threading is unsupported.
- The new
ParallelIterator::take_any
andskip_any
methods work like unorderedIndexedParallelIterator::take
andskip
, counting items in whatever order they are visited in parallel. - The new
ParallelIterator::take_any_while
andskip_any_while
methods work like unorderedIterator::take_while
andskip_while
, which previously had no parallel equivalent. The "while" condition may be satisfied from anywhere in the parallel iterator, affecting all future items regardless of position. - The new
yield_now
andyield_local
functions will cooperatively yield execution to Rayon, either trying to execute pending work from the entire pool or from just the local deques of the current thread, respectively.
Configuration
-
If you want to rebase/retry this MR, check this box
This MR has been generated by Renovate Bot.