Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump rayon from 1.5.3 to 1.7.0 #43

Open
wants to merge 10 commits into
base: main
Choose a base branch
from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Apr 1, 2023

Bumps rayon from 1.5.3 to 1.7.0.

Changelog

Sourced from rayon's changelog.

Release rayon 1.7.0 / rayon-core 1.11.0 (2023-03-03)

  • The minimum supported rustc is now 1.59.
  • Added a fallback when threading is unsupported.
  • The new ParallelIterator::take_any and skip_any methods work like unordered IndexedParallelIterator::take and skip, counting items in whatever order they are visited in parallel.
  • The new ParallelIterator::take_any_while and skip_any_while methods work like unordered Iterator::take_while and skip_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 and yield_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.

Release rayon-core 1.10.2 (2023-01-22)

  • Fixed miri-reported UB for SharedReadOnly tags protected by a call.

Release rayon 1.6.1 (2022-12-09)

  • Simplified par_bridge to only pull one item at a time from the iterator, without batching. Threads that are waiting for iterator items will now block appropriately rather than spinning CPU. (Thanks @​njaard!)
  • Added protection against recursion in par_bridge, so iterators that also invoke rayon will not cause mutex recursion deadlocks.

Release rayon-core 1.10.1 (2022-11-18)

  • Fixed a race condition with threads going to sleep while a broadcast starts.

Release rayon 1.6.0 / rayon-core 1.10.0 (2022-11-18)

  • The minimum supported rustc is now 1.56.
  • The new IndexedParallelIterator::fold_chunks and fold_chunks_with methods work like ParallelIterator::fold and fold_with with fixed-size chunks of items. This may be useful for predictable batching performance, without the allocation overhead of IndexedParallelIterator::chunks.
  • New "broadcast" methods run a given function on all threads in the pool. These run at a sort of reduced priority after each thread has exhausted their local work queue, but before they attempt work-stealing from other threads.
    • The global broadcast function and ThreadPool::broadcast method will block until completion, returning a Vec of all return values.
    • The global spawn_broadcast function and methods on ThreadPool, Scope, and ScopeFifo will run detached, without blocking the current thread.
  • Panicking methods now use #[track_caller] to report the caller's location.
  • Fixed a truncated length in vec::Drain when given an empty range.

Contributors

... (truncated)

Commits

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)
> **Note** > Automatic rebases have been disabled on this pull request as it has been open for over 30 days.

dependabot bot and others added 10 commits October 12, 2022 03:48
Bumps [clap](https://github.com/clap-rs/clap) from 3.2.20 to 4.0.13.
- [Release notes](https://github.com/clap-rs/clap/releases)
- [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md)
- [Commits](clap-rs/clap@v3.2.20...v4.0.13)

---
updated-dependencies:
- dependency-name: clap
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>
27: Bump clap from 3.2.20 to 4.0.13 r=evopen a=dependabot[bot]

Bumps [clap](https://github.com/clap-rs/clap) from 3.2.20 to 4.0.13.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/clap-rs/clap/releases">clap's releases</a>.</em></p>
<blockquote>
<h2>v4.0.13</h2>
<h2>[4.0.13] - 2022-10-11</h2>
<h3>Features</h3>
<ul>
<li><em>(derive)</em> Allow <code>()</code> for fields to mean &quot;don't read&quot; (<a href="https://github-redirect.dependabot.com/clap-rs/clap/issues/4371">#4371</a>)</li>
</ul>
<h2>v4.0.12</h2>
<h2>[4.0.12] - 2022-10-10</h2>
<h3>Features</h3>
<ul>
<li>Added <code>TypedValueParser::try_map</code> for when adapting an existing <code>TypedValueParser</code> can fail</li>
<li><em>(error)</em> Create errors like clap with <code>Error::new</code>, <code>Error::with_cmd</code>, and <code>Error::insert</code></li>
</ul>
<h2>v4.0.11</h2>
<h2>[4.0.11] - 2022-10-09</h2>
<h3>Fixes</h3>
<ul>
<li><em>(help)</em> Fix wrapping calculations with ANSI escape codes</li>
</ul>
<h2>v4.0.10</h2>
<h2>[4.0.10] - 2022-10-05</h2>
<h3>Features</h3>
<ul>
<li><em>(derive)</em> Support <code>#[arg(flatten)]</code> on <code>Option</code> types (<a href="https://github-redirect.dependabot.com/clap-rs/clap/issues/4211">#4211</a>, <a href="https://github-redirect.dependabot.com/clap-rs/clap/issues/4350">#4350</a>)</li>
</ul>
<h2>v4.0.9</h2>
<h2>[4.0.9] - 2022-10-03</h2>
<h3>Fixes</h3>
<ul>
<li><em>(derive)</em> Process doc comments for <code>#[command(subcommand)]</code> like in clap v3</li>
</ul>
<h2>v4.0.8</h2>
<h2>[4.0.8] - 2022-10-01</h2>
<h3>Fixes</h3>
<ul>
<li><em>(derive)</em> Remove a low-value assert preventing defaulting <code>Help</code> and <code>Version</code> actions</li>
</ul>
<h2>v4.0.7</h2>
<h2>[4.0.7] - 2022-09-30</h2>
<h3>Features</h3>
<ul>
<li><em>(derive)</em> Populate implicit ArgGroup (<a href="https://github-redirect.dependabot.com/clap-rs/clap/issues/3165">#3165</a>)</li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a href="https://github.com/clap-rs/clap/blob/master/CHANGELOG.md">clap's changelog</a>.</em></p>
<blockquote>
<h2>[4.0.13] - 2022-10-11</h2>
<h3>Features</h3>
<ul>
<li><em>(derive)</em> Allow <code>()</code> for fields to mean &quot;don't read&quot; (<a href="https://github-redirect.dependabot.com/clap-rs/clap/issues/4371">#4371</a>)</li>
</ul>
<h2>[4.0.12] - 2022-10-10</h2>
<h3>Features</h3>
<ul>
<li>Added <code>TypedValueParser::try_map</code> for when adapting an existing <code>TypedValueParser</code> can fail</li>
<li><em>(error)</em> Create errors like clap with <code>Error::new</code>, <code>Error::with_cmd</code>, and <code>Error::insert</code></li>
</ul>
<h2>[4.0.11] - 2022-10-09</h2>
<h3>Fixes</h3>
<ul>
<li><em>(help)</em> Fix wrapping calculations with ANSI escape codes</li>
</ul>
<h2>[4.0.10] - 2022-10-05</h2>
<h3>Features</h3>
<ul>
<li><em>(derive)</em> Support <code>#[arg(flatten)]</code> on <code>Option</code> types (<a href="https://github-redirect.dependabot.com/clap-rs/clap/issues/4211">#4211</a>, <a href="https://github-redirect.dependabot.com/clap-rs/clap/issues/4350">#4350</a>)</li>
</ul>
<h2>[4.0.9] - 2022-10-03</h2>
<h3>Fixes</h3>
<ul>
<li><em>(derive)</em> Process doc comments for <code>#[command(subcommand)]</code> like in clap v3</li>
</ul>
<h2>[4.0.8] - 2022-10-01</h2>
<h3>Fixes</h3>
<ul>
<li><em>(derive)</em> Remove a low-value assert preventing defaulting <code>Help</code> and <code>Version</code> actions</li>
</ul>
<h2>[4.0.7] - 2022-09-30</h2>
<h3>Features</h3>
<ul>
<li><em>(derive)</em> Populate implicit ArgGroup (<a href="https://github-redirect.dependabot.com/clap-rs/clap/issues/3165">#3165</a>)</li>
</ul>
<h3>Fixes</h3>
<ul>
<li><em>(derive)</em> Support <code>#[group(skip)]</code> on <code>Parser</code> derive</li>
<li><em>(derive)</em> Tell users about implicit arg groups when running into group name conflicts</li>
<li><em>(error)</em> Don't report unrelated groups in conflict or requires errors</li>
</ul>
<h2>[4.0.6] - 2022-09-30</h2>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a href="https://github.com/clap-rs/clap/commit/e5a7a651533d47a726b9a268f4c3a3c4dcc8bb36"><code>e5a7a65</code></a> chore: Release</li>
<li><a href="https://github.com/clap-rs/clap/commit/3b6ed1a45063cf970bc79927dc6474174a8ed829"><code>3b6ed1a</code></a> docs: Update changelog</li>
<li><a href="https://github.com/clap-rs/clap/commit/a6eddb015cb6776cbc00727821b04fc6ed0d0ab1"><code>a6eddb0</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/clap-rs/clap/issues/4371">#4371</a> from epage/unit</li>
<li><a href="https://github.com/clap-rs/clap/commit/b26c01aa0eea71450577956501f4b467fa0e646b"><code>b26c01a</code></a> feat(derive): Allow type-less fields</li>
<li><a href="https://github.com/clap-rs/clap/commit/a2f2a9ade16dcaee8ce0f5e9328bf27d5ef4205b"><code>a2f2a9a</code></a> chore: Release</li>
<li><a href="https://github.com/clap-rs/clap/commit/d821d2f193858b222d9e4468b21f737b69d7ba9b"><code>d821d2f</code></a> docs: Update changelog</li>
<li><a href="https://github.com/clap-rs/clap/commit/f4324229c8947875eb03be938a83440eefbfd4bd"><code>f432422</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/clap-rs/clap/issues/4366">#4366</a> from epage/try_map</li>
<li><a href="https://github.com/clap-rs/clap/commit/2122e2b2dd0fe8f5b8a5a454e0b2be4303863c79"><code>2122e2b</code></a> feat(parser): Add TypedValueParser::try_map</li>
<li><a href="https://github.com/clap-rs/clap/commit/233a6be7dcf705ff0343fb8d211f076377123b1b"><code>233a6be</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/clap-rs/clap/issues/4365">#4365</a> from epage/error</li>
<li><a href="https://github.com/clap-rs/clap/commit/502bb93e5b4dd3726cdc1d05b410843622cacd11"><code>502bb93</code></a> feat(error): Allow reproducing clap's errors</li>
<li>Additional commits viewable in <a href="https://github.com/clap-rs/clap/compare/v3.2.20...v4.0.13">compare view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=clap&package-manager=cargo&previous-version=3.2.20&new-version=4.0.13)](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)


</details>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Li Yuanheng <[email protected]>
28: monthly dependabot check r=evopen a=evopen



Co-authored-by: Li Yuanheng <[email protected]>
Bumps [clap](https://github.com/clap-rs/clap) from 4.0.13 to 4.0.18.
- [Release notes](https://github.com/clap-rs/clap/releases)
- [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md)
- [Commits](clap-rs/clap@v4.0.13...v4.0.18)

---
updated-dependencies:
- dependency-name: clap
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>
Bumps [glam](https://github.com/bitshifter/glam-rs) from 0.21.3 to 0.22.0.
- [Release notes](https://github.com/bitshifter/glam-rs/releases)
- [Changelog](https://github.com/bitshifter/glam-rs/blob/main/CHANGELOG.md)
- [Commits](bitshifter/glam-rs@0.21.3...0.22.0)

---
updated-dependencies:
- dependency-name: glam
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>
29: Bump clap from 4.0.13 to 4.0.18 r=evopen a=dependabot[bot]

Bumps [clap](https://github.com/clap-rs/clap) from 4.0.13 to 4.0.18.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/clap-rs/clap/releases">clap's releases</a>.</em></p>
<blockquote>
<h2>v4.0.18</h2>
<h2>[4.0.18] - 2022-10-20</h2>
<h3>Fixes</h3>
<ul>
<li><em>(derive)</em> Allow <code>#[command(skip)]</code> to also work with enum variants with a value</li>
</ul>
<h2>v4.0.17</h2>
<h2>[4.0.17] - 2022-10-18</h2>
<h3>Fixes</h3>
<ul>
<li>Allow using <code>Arg::last(true)</code> with <code>Arg::value_hint(ValueHint::CommandWithArguments)</code></li>
</ul>
<h2>v4.0.16</h2>
<h2>[4.0.16] - 2022-10-18</h2>
<h3>Fixes</h3>
<ul>
<li><code>Arg::exclusive(true)</code> should not be exclusive with the argument's own <code>ArgGroup</code></li>
</ul>
<h2>v4.0.15</h2>
<h2>[4.0.15] - 2022-10-13</h2>
<h3>Fixes</h3>
<ul>
<li><em>(error)</em> Don't suggest <code>--</code> when it doesn't help</li>
<li><em>(error)</em> Be more consistent in quoting, punctuation, and indentation in errors</li>
</ul>
<h2>v4.0.14</h2>
<h2>[4.0.14] - 2022-10-12</h2>
<h3>Fixes</h3>
<ul>
<li>Only put <code>ArgGroup</code> in <code>ArgMatches</code> when explicitly specified, fixing derives handling of option-flattened fields (<a href="https://github-redirect.dependabot.com/clap-rs/clap/issues/4375">#4375</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a href="https://github.com/clap-rs/clap/blob/master/CHANGELOG.md">clap's changelog</a>.</em></p>
<blockquote>
<h2>[4.0.18] - 2022-10-20</h2>
<h3>Fixes</h3>
<ul>
<li><em>(derive)</em> Allow <code>#[command(skip)]</code> to also work with enum variants with a value</li>
</ul>
<h2>[4.0.17] - 2022-10-18</h2>
<h3>Fixes</h3>
<ul>
<li>Allow using <code>Arg::last(true)</code> with <code>Arg::value_hint(ValueHint::CommandWithArguments)</code></li>
</ul>
<h2>[4.0.16] - 2022-10-18</h2>
<h3>Fixes</h3>
<ul>
<li><code>Arg::exclusive(true)</code> should not be exclusive with the argument's own <code>ArgGroup</code></li>
</ul>
<h2>[4.0.15] - 2022-10-13</h2>
<h3>Fixes</h3>
<ul>
<li><em>(error)</em> Don't suggest <code>--</code> when it doesn't help</li>
<li><em>(error)</em> Be more consistent in quoting, punctuation, and indentation in errors</li>
</ul>
<h2>[4.0.14] - 2022-10-12</h2>
<h3>Fixes</h3>
<ul>
<li>Only put <code>ArgGroup</code> in <code>ArgMatches</code> when explicitly specified, fixing derives handling of option-flattened fields (<a href="https://github-redirect.dependabot.com/clap-rs/clap/issues/4375">#4375</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a href="https://github.com/clap-rs/clap/commit/7e2a1b5d9485506f7a2d6412209ff2e5486d112a"><code>7e2a1b5</code></a> chore: Release</li>
<li><a href="https://github.com/clap-rs/clap/commit/3a0f9fe4a2f20ca1c9bcc8ab9c74eb0403c0dfae"><code>3a0f9fe</code></a> docs: Update changelog</li>
<li><a href="https://github.com/clap-rs/clap/commit/422298ceb33a29bb729599aeb455e2f078cd91f5"><code>422298c</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/clap-rs/clap/issues/4412">#4412</a> from epage/skip</li>
<li><a href="https://github.com/clap-rs/clap/commit/91daec67ca2a93a8f7cec37d62332e1d6d7d064b"><code>91daec6</code></a> fix(derive): Allow skipping enum variants with a value</li>
<li><a href="https://github.com/clap-rs/clap/commit/996636d56f69f3591e88cdc3c3c346352fa3653a"><code>996636d</code></a> chore: Release</li>
<li><a href="https://github.com/clap-rs/clap/commit/3e23cd102f5b8b78bee070194cf7835d627260d9"><code>3e23cd1</code></a> fix: Require release versions of clap</li>
<li><a href="https://github.com/clap-rs/clap/commit/b9dfbbf7e4b9b0c1d747b4a6ca0dabded48da0a9"><code>b9dfbbf</code></a> chore: Release</li>
<li><a href="https://github.com/clap-rs/clap/commit/a6c8f6a5bdbc4f387776112114a001b984d802bc"><code>a6c8f6a</code></a> docs: Update changelog</li>
<li><a href="https://github.com/clap-rs/clap/commit/e11afa284b2478ac0a6d2b62d429f6c2e420f296"><code>e11afa2</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/clap-rs/clap/issues/4401">#4401</a> from epage/last</li>
<li><a href="https://github.com/clap-rs/clap/commit/1ead5ef421be313f636ed0ba765dfd5abf9289ee"><code>1ead5ef</code></a> fix(complete): Support last(true) with CommandWithArguments</li>
<li>Additional commits viewable in <a href="https://github.com/clap-rs/clap/compare/v4.0.13...v4.0.18">compare view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=clap&package-manager=cargo&previous-version=4.0.13&new-version=4.0.18)](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)


</details>

30: Bump glam from 0.21.3 to 0.22.0 r=evopen a=dependabot[bot]

Bumps [glam](https://github.com/bitshifter/glam-rs) from 0.21.3 to 0.22.0.
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a href="https://github.com/bitshifter/glam-rs/blob/main/CHANGELOG.md">glam's changelog</a>.</em></p>
<blockquote>
<h2>[0.22.0] - 2022-10-24</h2>
<h3>Breaking changes</h3>
<ul>
<li>
<p>Added <code>u32</code> implementation of <code>BVec3A</code> and <code>BVec4</code> when SIMD is not available.
These are used instead of aliasing to the <code>bool</code> implementations.</p>
</li>
<li>
<p>Removed <code>Add</code>, <code>Sub</code>, and scalar <code>Mul</code> implementations from affine types as
they didn't make sense on these types.</p>
</li>
<li>
<p>Removed deprecated <code>const_*</code> macros. These have been replaced by <code>const fn</code>
methods.</p>
</li>
</ul>
<h3>Fixed</h3>
<ul>
<li>
<p>Fixed <code>neg</code> and <code>signum</code> to consistently handle negative zero across multiple
platforms.</p>
</li>
<li>
<p>Removed <code>register_attr</code> feature usage for SPIR-V targets.</p>
</li>
</ul>
<h3>Added</h3>
<ul>
<li>
<p>Added missing <code>Serialize</code>, <code>Deserialize</code> and <code>PartialEq</code> implementations.</p>
</li>
<li>
<p>Added <code>Sum&lt;Self&gt;</code> and <code>Product&lt;Self&gt;</code> implementations for all vector, matrix
and quaternion types.</p>
</li>
<li>
<p>Added 4x4 matrix methods <code>look_at_lh</code> and <code>look_at_rh</code>. These were previously
private.</p>
</li>
<li>
<p>Added <code>dot_into_vec</code> methods to vector which returns the result of the dot
product splatted to all vector lanes.</p>
</li>
<li>
<p>Added <code>is_negative_bitmask</code> to vector types which returns a <code>u32</code> of bits for
each negative vector lane.</p>
</li>
<li>
<p>Added <code>splat</code> method and <code>TRUE</code> and <code>FALSE</code> constants to all <code>BVec</code> types.</p>
</li>
<li>
<p>Added <code>from_mat3a</code> methods to <code>Affine2</code>, <code>Mat2</code>, <code>Mat4</code> and <code>Quat</code> types.</p>
</li>
</ul>
<h3>Changed</h3>
<ul>
<li>
<p>Disable <code>serde</code> default features.</p>
</li>
<li>
<p>Made <code>to_cols_array</code>, <code>to_cols_array_2d</code>, and <code>from_diagonal</code> methods
<code>const fn</code>.</p>
</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a href="https://github.com/bitshifter/glam-rs/commit/907ae262e4b91dcc98ebcc8ad701de62a4ec6fe8"><code>907ae26</code></a> Prepare 0.22.0 release (<a href="https://github-redirect.dependabot.com/bitshifter/glam-rs/issues/355">#355</a>)</li>
<li><a href="https://github.com/bitshifter/glam-rs/commit/6709322b8754325222142020e3174dea423c1186"><code>6709322</code></a> whitespace.</li>
<li><a href="https://github.com/bitshifter/glam-rs/commit/69c7a608f245ac41d1b266351cc6f0894470d386"><code>69c7a60</code></a> Updated CHANGELOG.</li>
<li><a href="https://github.com/bitshifter/glam-rs/commit/7c03e64e3edf8a2519a068507ba012197af36600"><code>7c03e64</code></a> Removed affine transform ops that didn't make sense. (<a href="https://github-redirect.dependabot.com/bitshifter/glam-rs/issues/354">#354</a>)</li>
<li><a href="https://github.com/bitshifter/glam-rs/commit/c34a632ffda19c16afcc4f1922aed78fb36c09cc"><code>c34a632</code></a> Removed register_attr from required rust features for spirv (<a href="https://github-redirect.dependabot.com/bitshifter/glam-rs/issues/353">#353</a>)</li>
<li><a href="https://github.com/bitshifter/glam-rs/commit/43cf6e861a5fe2ee7d6310ae1bbedf3eead95800"><code>43cf6e8</code></a> Add missing <code>from_mat3a</code> methods (<a href="https://github-redirect.dependabot.com/bitshifter/glam-rs/issues/352">#352</a>)</li>
<li><a href="https://github.com/bitshifter/glam-rs/commit/34c57c63a454417a3ce9a1b3c1ac7b6518fdaabe"><code>34c57c6</code></a> Add more const fn's (<a href="https://github-redirect.dependabot.com/bitshifter/glam-rs/issues/343">#343</a>)</li>
<li><a href="https://github.com/bitshifter/glam-rs/commit/5c4618954cb565dc6e43beba2a422567dfbc20bb"><code>5c46189</code></a> Add BVec::TRUE and BVec::FALSE (<a href="https://github-redirect.dependabot.com/bitshifter/glam-rs/issues/348">#348</a>)</li>
<li><a href="https://github.com/bitshifter/glam-rs/commit/30f1788192fb86b593c2dbd6525137db58e7e859"><code>30f1788</code></a> Add Vec::sign_bits (<a href="https://github-redirect.dependabot.com/bitshifter/glam-rs/issues/345">#345</a>)</li>
<li><a href="https://github.com/bitshifter/glam-rs/commit/4cc696709877042bd1aadadeecfa9d3c134487a4"><code>4cc6967</code></a> Fix negation and signum to consistently handle negative zero across platforms...</li>
<li>Additional commits viewable in <a href="https://github.com/bitshifter/glam-rs/compare/0.21.3...0.22.0">compare view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=glam&package-manager=cargo&previous-version=0.21.3&new-version=0.22.0)](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)


</details>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Bumps [num_cpus](https://github.com/seanmonstar/num_cpus) from 1.13.1 to 1.15.0.
- [Release notes](https://github.com/seanmonstar/num_cpus/releases)
- [Changelog](https://github.com/seanmonstar/num_cpus/blob/master/CHANGELOG.md)
- [Commits](seanmonstar/num_cpus@v1.13.1...v1.15.0)

---
updated-dependencies:
- dependency-name: num_cpus
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>
37: Bump num_cpus from 1.13.1 to 1.15.0 r=evopen a=dependabot[bot]

Bumps [num_cpus](https://github.com/seanmonstar/num_cpus) from 1.13.1 to 1.15.0.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/seanmonstar/num_cpus/releases">num_cpus's releases</a>.</em></p>
<blockquote>
<h2>v1.15.0</h2>
<h2>Fixes</h2>
<ul>
<li>update hermit-abi</li>
</ul>
<h2>New Contributors</h2>
<ul>
<li><a href="https://github.com/striezel"><code>`@​striezel</code></a>` made their first contribution in <a href="https://github-redirect.dependabot.com/seanmonstar/num_cpus/pull/126">seanmonstar/num_cpus#126</a></li>
<li><a href="https://github.com/buffet"><code>`@​buffet</code></a>` made their first contribution in <a href="https://github-redirect.dependabot.com/seanmonstar/num_cpus/pull/127">seanmonstar/num_cpus#127</a></li>
</ul>
<h2>v1.14.0</h2>
<h2>Features</h2>
<ul>
<li>Support cgroups v2 by <a href="https://github.com/OrionNebula"><code>`@​OrionNebula</code></a>` in <a href="https://github-redirect.dependabot.com/seanmonstar/num_cpus/pull/125">seanmonstar/num_cpus#125</a></li>
<li>Do not attempt to open files in Miri by <a href="https://github.com/RalfJung"><code>`@​RalfJung</code></a>` in <a href="https://github-redirect.dependabot.com/seanmonstar/num_cpus/pull/121">seanmonstar/num_cpus#121</a></li>
</ul>
<h2>New Contributors</h2>
<ul>
<li><a href="https://github.com/RalfJung"><code>`@​RalfJung</code></a>` made their first contribution in <a href="https://github-redirect.dependabot.com/seanmonstar/num_cpus/pull/121">seanmonstar/num_cpus#121</a></li>
<li><a href="https://github.com/OrionNebula"><code>`@​OrionNebula</code></a>` made their first contribution in <a href="https://github-redirect.dependabot.com/seanmonstar/num_cpus/pull/125">seanmonstar/num_cpus#125</a></li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a href="https://github.com/seanmonstar/num_cpus/blob/master/CHANGELOG.md">num_cpus's changelog</a>.</em></p>
<blockquote>
<h2>v1.15.0</h2>
<h3>Fixes</h3>
<ul>
<li>update hermit-abi</li>
</ul>
<h2>v1.14.0</h2>
<h3>Features</h3>
<ul>
<li>add support for cgroups v2</li>
<li>Skip reading files in Miri</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a href="https://github.com/seanmonstar/num_cpus/commit/5bea3c7986c2a5c6763ca1b3f6d6982aca7cdc23"><code>5bea3c7</code></a> v1.15.0</li>
<li><a href="https://github.com/seanmonstar/num_cpus/commit/ccb5a6792574252633625168f3430916068ec16b"><code>ccb5a67</code></a> chore: update hermit-abi to 0.2.6 (<a href="https://github-redirect.dependabot.com/seanmonstar/num_cpus/issues/127">#127</a>)</li>
<li><a href="https://github.com/seanmonstar/num_cpus/commit/e437b9d9083d717692e35d917de8674a7987dd06"><code>e437b9d</code></a> ci: update actions/checkout in GitHub Actions workflows to v3 (<a href="https://github-redirect.dependabot.com/seanmonstar/num_cpus/issues/126">#126</a>)</li>
<li><a href="https://github.com/seanmonstar/num_cpus/commit/90373f3865f92a0e8c5e137738fb91df19bea7e0"><code>90373f3</code></a> v1.14.0</li>
<li><a href="https://github.com/seanmonstar/num_cpus/commit/4f0f2a484e08a4721fce67b3f558c93bcbb92009"><code>4f0f2a4</code></a> Support reading cpu.max from cgroups v2 (<a href="https://github-redirect.dependabot.com/seanmonstar/num_cpus/issues/125">#125</a>)</li>
<li><a href="https://github.com/seanmonstar/num_cpus/commit/354348cc08b2dddb7a3764fa70f8a5c3d479b0c8"><code>354348c</code></a> do not attempt to open files in Miri (<a href="https://github-redirect.dependabot.com/seanmonstar/num_cpus/issues/121">#121</a>)</li>
<li>See full diff in <a href="https://github.com/seanmonstar/num_cpus/compare/v1.13.1...v1.15.0">compare view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=num_cpus&package-manager=cargo&previous-version=1.13.1&new-version=1.15.0)](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)


</details>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Bumps [rayon](https://github.com/rayon-rs/rayon) from 1.5.3 to 1.7.0.
- [Release notes](https://github.com/rayon-rs/rayon/releases)
- [Changelog](https://github.com/rayon-rs/rayon/blob/master/RELEASES.md)
- [Commits](rayon-rs/rayon@v1.5.3...rayon-core-v1.7.0)

---
updated-dependencies:
- dependency-name: rayon
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Apr 1, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant