mirror of
https://github.com/nushell/nushell
synced 2024-11-10 07:04:13 +00:00
Bump rayon from 1.8.1 to 1.9.0 (#12186)
Bumps [rayon](https://github.com/rayon-rs/rayon) from 1.8.1 to 1.9.0. <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/rayon-rs/rayon/blob/main/RELEASES.md">rayon's changelog</a>.</em></p> <blockquote> <h1>Release rayon 1.9.0 (2024-02-27)</h1> <ul> <li>The new methods <code>IndexedParallelIterator::by_exponential_blocks</code> and <code>by_uniform_blocks</code> allow processing items in smaller groups at a time.</li> <li>The new <code>iter::walk_tree</code>, <code>walk_tree_prefix</code>, and <code>walk_tree_postfix</code> functions enable custom parallel iteration over tree-like structures.</li> <li>The new method <code>ParallelIterator::collect_vec_list</code> returns items as a linked list of vectors, which is an efficient mode of parallel collection used by many of the internal implementations of <code>collect</code>.</li> <li>The new methods <code>ParallelSliceMut::par_split_inclusive_mut</code>, <code>ParallelSlice::par_split_inclusive</code>, and <code>ParallelString::par_split_inclusive</code> all work like a normal split but keeping the separator as part of the left slice.</li> <li>The new <code>ParallelString::par_split_ascii_whitespace</code> splits only on ASCII whitespace, which is faster than including Unicode multi-byte whitespace.</li> <li><code>OsString</code> now implements <code>FromParallelIterator<_></code> and <code>ParallelExtend<_></code> for a few item types similar to the standard <code>FromIterator</code> and <code>Extend</code>.</li> <li>The internal <code>Pattern</code> trait for string methods is now implemented for <code>[char; N]</code> and <code>&[char; N]</code>, matching any of the given characters.</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="dc13cb7875
"><code>dc13cb7</code></a> Merge <a href="https://redirect.github.com/rayon-rs/rayon/issues/810">#810</a></li> <li><a href="67eeea6f2a
"><code>67eeea6</code></a> Release rayon 1.5.0 / rayon-core 1.9.0</li> <li><a href="4828f30eef
"><code>4828f30</code></a> Merge <a href="https://redirect.github.com/rayon-rs/rayon/issues/808">#808</a></li> <li><a href="eeb0d1ad5e
"><code>eeb0d1a</code></a> update ci/compat-Cargo.lock</li> <li><a href="12f0d202b8
"><code>12f0d20</code></a> Update glium so that rayon-demo runs on Gnome Wayland</li> <li><a href="1f069d7710
"><code>1f069d7</code></a> Merge <a href="https://redirect.github.com/rayon-rs/rayon/issues/807">#807</a></li> <li><a href="9691328a5a
"><code>9691328</code></a> Use Iterator::copied</li> <li><a href="e81835c074
"><code>e81835c</code></a> Update crossbeam dependencies (requires Rust 1.36)</li> <li><a href="5b3d917d6c
"><code>5b3d917</code></a> Merge <a href="https://redirect.github.com/rayon-rs/rayon/issues/804">#804</a></li> <li><a href="5c55033950
"><code>5c55033</code></a> Release rayon 1.4.1</li> <li>Additional commits viewable in <a href="https://github.com/rayon-rs/rayon/compare/rayon-core-v1.8.1...rayon-core-v1.9.0">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=rayon&package-manager=cargo&previous-version=1.8.1&new-version=1.9.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) </details> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
This commit is contained in:
parent
32529433fb
commit
8725bd3112
2 changed files with 3 additions and 3 deletions
4
Cargo.lock
generated
4
Cargo.lock
generated
|
@ -4474,9 +4474,9 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "rayon"
|
||||
version = "1.8.1"
|
||||
version = "1.9.0"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "fa7237101a77a10773db45d62004a272517633fbcc3df19d96455ede1122e051"
|
||||
checksum = "e4963ed1bc86e4f3ee217022bd855b297cef07fb9eac5dfa1f788b220b49b3bd"
|
||||
dependencies = [
|
||||
"either",
|
||||
"rayon-core",
|
||||
|
|
|
@ -67,7 +67,7 @@ percent-encoding = { workspace = true }
|
|||
print-positions = "0.6"
|
||||
quick-xml = "0.31.0"
|
||||
rand = "0.8"
|
||||
rayon = "1.8"
|
||||
rayon = "1.9"
|
||||
regex = "1.9.5"
|
||||
roxmltree = "0.19"
|
||||
rusqlite = { version = "0.31", features = ["bundled", "backup", "chrono"], optional = true }
|
||||
|
|
Loading…
Reference in a new issue