Bump crossbeam-utils from 0.8.1 to 0.8.15 #1

Merged
dependabot[bot] merged 1 commits from dependabot/cargo/crossbeam-utils-0.8.15 into master 2024-10-29 17:35:10 +08:00
dependabot[bot] commented 2023-05-15 13:20:54 +08:00 (Migrated from github.com)

Bumps crossbeam-utils from 0.8.1 to 0.8.15.

Release notes

Sourced from crossbeam-utils's releases.

crossbeam-utils 0.8.15

  • Add #[clippy::has_significant_drop] to ShardedLock{Read,Write}Guard. (#958)
  • Improve handling of very large timeout. (#953)
  • Soft-deprecate thread::scope() in favor of the more efficient std::thread::scope that stabilized on Rust 1.63. (#954)

crossbeam-utils 0.8.14

  • Fix build script bug introduced in 0.8.13. (#932)

crossbeam-utils 0.8.13

  • Improve support for custom targets. (#922)

crossbeam-utils 0.8.12

  • Remove the dependency on the once_cell crate to restore the MSRV. (#913)
  • Work around rust-lang#98302, which causes compile error on windows-gnu when LTO is enabled. (#913)

crossbeam-utils 0.8.11

  • Bump the minimum supported Rust version to 1.38. (#877)

crossbeam-utils 0.8.10

  • Fix unsoundness of AtomicCell on types containing niches. (#834) This fix contains breaking changes, but they are allowed because this is a soundness bug fix. See #834 for more.

crossbeam-utils 0.8.9

  • Replace lazy_static with once_cell. (#817)

crossbeam-utils 0.8.8

  • Fix a bug when unstable loom support is enabled. (#787)

crossbeam-utils 0.8.7

  • Add AtomicCell<{i*,u*}>::{fetch_max,fetch_min}. (#785)
  • Add AtomicCell<{i*,u*,bool}>::fetch_nand. (#785)
  • Fix unsoundness of AtomicCell<{i,u}64> arithmetics on 32-bit targets that support Atomic{I,U}64 (#781)

crossbeam-utils 0.8.6

  • Re-add AtomicCell<{i,u}64>::{fetch_add,fetch_sub,fetch_and,fetch_or,fetch_xor} that were accidentally removed in 0.8.0 0.7.1 on targets that do not support Atomic{I,U}64. (#767)
  • Re-add AtomicCell<{i,u}128>::{fetch_add,fetch_sub,fetch_and,fetch_or,fetch_xor} that were accidentally removed in 0.8.0 0.7.1. (#767)

crossbeam-utils 0.8.5

  • Add AtomicCell::fetch_update (#704)
  • Support targets that do not have atomic CAS on stable Rust (#698)

crossbeam-utils 0.8.4

  • Bump loom dependency to version 0.5. (#686)

crossbeam-utils 0.8.3

  • Make loom dependency optional. (#666)

crossbeam-utils 0.8.2

  • Deprecate AtomicCell::compare_and_swap. Use AtomicCell::compare_exchange instead. (#619)
  • Add Parker::park_deadline. (#563)

... (truncated)

Changelog

Sourced from crossbeam-utils's changelog.

Version 0.8.2

  • Bump the minimum supported Rust version to 1.38. (#877)
Commits
  • 721382b Merge #964
  • 3f4e797 Prepare for the next release
  • a03ceeb Revert "Use dtolnay/rust-toolchain action"
  • 56397a1 Handle min-atomic-width in no_atomic.sh
  • 6871c00 Mark some structures with #[clippy::has_significant_drop]
  • 78a4331 Deps: update to memoffset 0.8
  • 7df683c Make scope() function soft-deprecated
  • 923d050 Wait forever on very large timeout
  • b13bdb0 Fix AtomicCell is_lock_free test on armv7
  • 34dd9d5 limit batch steal size
  • Additional commits viewable in compare view

Dependabot compatibility score

You can trigger a rebase of this PR by commenting @dependabot rebase.


Dependabot commands and options

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 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)
    You can disable automated security fix PRs for this repo from the Security Alerts page.

Note


Automatic rebases have been disabled on this pull request as it has been open for over 30 days.

Bumps [crossbeam-utils](https://github.com/crossbeam-rs/crossbeam) from 0.8.1 to 0.8.15. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/crossbeam-rs/crossbeam/releases">crossbeam-utils's releases</a>.</em></p> <blockquote> <h2>crossbeam-utils 0.8.15</h2> <ul> <li>Add <code>#[clippy::has_significant_drop]</code> to <code>ShardedLock{Read,Write}Guard</code>. (<a href="https://redirect.github.com/crossbeam-rs/crossbeam/issues/958">#958</a>)</li> <li>Improve handling of very large timeout. (<a href="https://redirect.github.com/crossbeam-rs/crossbeam/issues/953">#953</a>)</li> <li>Soft-deprecate <code>thread::scope()</code> in favor of the more efficient <code>std::thread::scope</code> that stabilized on Rust 1.63. (<a href="https://redirect.github.com/crossbeam-rs/crossbeam/issues/954">#954</a>)</li> </ul> <h2>crossbeam-utils 0.8.14</h2> <ul> <li>Fix build script bug introduced in 0.8.13. (<a href="https://redirect.github.com/crossbeam-rs/crossbeam/issues/932">#932</a>)</li> </ul> <h2>crossbeam-utils 0.8.13</h2> <ul> <li>Improve support for custom targets. (<a href="https://redirect.github.com/crossbeam-rs/crossbeam/issues/922">#922</a>)</li> </ul> <h2>crossbeam-utils 0.8.12</h2> <ul> <li>Remove the dependency on the <code>once_cell</code> crate to restore the MSRV. (<a href="https://redirect.github.com/crossbeam-rs/crossbeam/issues/913">#913</a>)</li> <li>Work around <a href="https://redirect.github.com/rust-lang/rust/issues/98302">rust-lang#98302</a>, which causes compile error on windows-gnu when LTO is enabled. (<a href="https://redirect.github.com/crossbeam-rs/crossbeam/issues/913">#913</a>)</li> </ul> <h2>crossbeam-utils 0.8.11</h2> <ul> <li>Bump the minimum supported Rust version to 1.38. (<a href="https://redirect.github.com/crossbeam-rs/crossbeam/issues/877">#877</a>)</li> </ul> <h2>crossbeam-utils 0.8.10</h2> <ul> <li>Fix unsoundness of <code>AtomicCell</code> on types containing niches. (<a href="https://redirect.github.com/crossbeam-rs/crossbeam/issues/834">#834</a>) This fix contains breaking changes, but they are allowed because this is a soundness bug fix. See <a href="https://redirect.github.com/crossbeam-rs/crossbeam/issues/834">#834</a> for more.</li> </ul> <h2>crossbeam-utils 0.8.9</h2> <ul> <li>Replace lazy_static with once_cell. (<a href="https://redirect.github.com/crossbeam-rs/crossbeam/issues/817">#817</a>)</li> </ul> <h2>crossbeam-utils 0.8.8</h2> <ul> <li>Fix a bug when unstable <code>loom</code> support is enabled. (<a href="https://redirect.github.com/crossbeam-rs/crossbeam/issues/787">#787</a>)</li> </ul> <h2>crossbeam-utils 0.8.7</h2> <ul> <li>Add <code>AtomicCell&lt;{i*,u*}&gt;::{fetch_max,fetch_min}</code>. (<a href="https://redirect.github.com/crossbeam-rs/crossbeam/issues/785">#785</a>)</li> <li>Add <code>AtomicCell&lt;{i*,u*,bool}&gt;::fetch_nand</code>. (<a href="https://redirect.github.com/crossbeam-rs/crossbeam/issues/785">#785</a>)</li> <li>Fix unsoundness of <code>AtomicCell&lt;{i,u}64&gt;</code> arithmetics on 32-bit targets that support <code>Atomic{I,U}64</code> (<a href="https://redirect.github.com/crossbeam-rs/crossbeam/issues/781">#781</a>)</li> </ul> <h2>crossbeam-utils 0.8.6</h2> <ul> <li>Re-add <code>AtomicCell&lt;{i,u}64&gt;::{fetch_add,fetch_sub,fetch_and,fetch_or,fetch_xor}</code> that were accidentally removed in <del>0.8.0</del> 0.7.1 on targets that do not support <code>Atomic{I,U}64</code>. (<a href="https://redirect.github.com/crossbeam-rs/crossbeam/issues/767">#767</a>)</li> <li>Re-add <code>AtomicCell&lt;{i,u}128&gt;::{fetch_add,fetch_sub,fetch_and,fetch_or,fetch_xor}</code> that were accidentally removed in <del>0.8.0</del> 0.7.1. (<a href="https://redirect.github.com/crossbeam-rs/crossbeam/issues/767">#767</a>)</li> </ul> <h2>crossbeam-utils 0.8.5</h2> <ul> <li>Add <code>AtomicCell::fetch_update</code> (<a href="https://redirect.github.com/crossbeam-rs/crossbeam/issues/704">#704</a>)</li> <li>Support targets that do not have atomic CAS on stable Rust (<a href="https://redirect.github.com/crossbeam-rs/crossbeam/issues/698">#698</a>)</li> </ul> <h2>crossbeam-utils 0.8.4</h2> <ul> <li>Bump <code>loom</code> dependency to version 0.5. (<a href="https://redirect.github.com/crossbeam-rs/crossbeam/issues/686">#686</a>)</li> </ul> <h2>crossbeam-utils 0.8.3</h2> <ul> <li>Make <code>loom</code> dependency optional. (<a href="https://redirect.github.com/crossbeam-rs/crossbeam/issues/666">#666</a>)</li> </ul> <h2>crossbeam-utils 0.8.2</h2> <ul> <li>Deprecate <code>AtomicCell::compare_and_swap</code>. Use <code>AtomicCell::compare_exchange</code> instead. (<a href="https://redirect.github.com/crossbeam-rs/crossbeam/issues/619">#619</a>)</li> <li>Add <code>Parker::park_deadline</code>. (<a href="https://redirect.github.com/crossbeam-rs/crossbeam/issues/563">#563</a>)</li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/crossbeam-rs/crossbeam/blob/master/CHANGELOG.md">crossbeam-utils's changelog</a>.</em></p> <blockquote> <h1>Version 0.8.2</h1> <ul> <li>Bump the minimum supported Rust version to 1.38. (<a href="https://redirect.github.com/crossbeam-rs/crossbeam/issues/877">#877</a>)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/crossbeam-rs/crossbeam/commit/721382b00b5dadd81954ed66764d547e2f1bb7a3"><code>721382b</code></a> Merge <a href="https://redirect.github.com/crossbeam-rs/crossbeam/issues/964">#964</a></li> <li><a href="https://github.com/crossbeam-rs/crossbeam/commit/3f4e797306ee0a0ce20c201274058140e2f0e21e"><code>3f4e797</code></a> Prepare for the next release</li> <li><a href="https://github.com/crossbeam-rs/crossbeam/commit/a03ceeb7d63faca59a15ba2e254e244e1821e299"><code>a03ceeb</code></a> Revert &quot;Use dtolnay/rust-toolchain action&quot;</li> <li><a href="https://github.com/crossbeam-rs/crossbeam/commit/56397a1d3d86b1eeb2a0bfb56dabf48362c1aaff"><code>56397a1</code></a> Handle min-atomic-width in no_atomic.sh</li> <li><a href="https://github.com/crossbeam-rs/crossbeam/commit/6871c0025a5841550cc83549b6f7f30c8ecaa7f6"><code>6871c00</code></a> Mark some structures with <code>#[clippy::has_significant_drop]</code></li> <li><a href="https://github.com/crossbeam-rs/crossbeam/commit/78a4331f60653d5622ec9ec5660dd03f830a5549"><code>78a4331</code></a> Deps: update to memoffset 0.8</li> <li><a href="https://github.com/crossbeam-rs/crossbeam/commit/7df683c8ce23ecea87f2e2cd1f84b7fa357a9dd0"><code>7df683c</code></a> Make <code>scope()</code> function soft-deprecated</li> <li><a href="https://github.com/crossbeam-rs/crossbeam/commit/923d05052684e443ff45f9a5c1339237edce99f2"><code>923d050</code></a> Wait forever on very large timeout</li> <li><a href="https://github.com/crossbeam-rs/crossbeam/commit/b13bdb07a6dbc6a1195923dc2e805b767b679872"><code>b13bdb0</code></a> Fix AtomicCell is_lock_free test on armv7</li> <li><a href="https://github.com/crossbeam-rs/crossbeam/commit/34dd9d5de02fcfb8820d3605f26abb2c8e9e0753"><code>34dd9d5</code></a> limit batch steal size</li> <li>Additional commits viewable in <a href="https://github.com/crossbeam-rs/crossbeam/compare/crossbeam-utils-0.8.1...crossbeam-utils-0.8.15">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=crossbeam-utils&package-manager=cargo&previous-version=0.8.1&new-version=0.8.15)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) You can trigger a rebase of this PR 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 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) You can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/uttarayan21/snake-rs/network/alerts). </details> > **Note** > Automatic rebases have been disabled on this pull request as it has been open for over 30 days.
Sign in to join this conversation.