Skip to content

Commit 190d414

Browse files
chore(deps): bump the all-cargo-dependencies group with 4 updates (#878)
Bumps the all-cargo-dependencies group with 4 updates: [anyhow](https://github.com/dtolnay/anyhow), [glam](https://github.com/bitshifter/glam-rs), [clap](https://github.com/clap-rs/clap) and [divan](https://github.com/nvzqz/divan). Updates `anyhow` from 1.0.97 to 1.0.98 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/dtolnay/anyhow/releases">anyhow's releases</a>.</em></p> <blockquote> <h2>1.0.98</h2> <ul> <li>Add <a href="https://docs.rs/anyhow/1/anyhow/struct.Error.html#method.into_boxed_dyn_error"><code>self.into_boxed_dyn_error()</code></a> and <a href="https://docs.rs/anyhow/1/anyhow/struct.Error.html#method.reallocate_into_boxed_dyn_error_without_backtrace"><code>self.reallocate_into_boxed_dyn_error_without_backtrace()</code></a> methods for anyhow::Error (<a href="https://redirect.github.com/dtolnay/anyhow/issues/415">#415</a>)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/dtolnay/anyhow/commit/709fe86f04878a62a29b9279f5bb96422f8bca28"><code>709fe86</code></a> Release 1.0.98</li> <li><a href="https://github.com/dtolnay/anyhow/commit/cbc1ad2b1621c538a5643f2f0c3800b98f3e40a0"><code>cbc1ad2</code></a> Merge pull request <a href="https://redirect.github.com/dtolnay/anyhow/issues/415">#415</a> from dtolnay/intodyn</li> <li><a href="https://github.com/dtolnay/anyhow/commit/e1a2017668cb365aac7573917d0c861298611ab5"><code>e1a2017</code></a> Add 2 different conversions to Box&lt;dyn Error + Send + Sync + 'static&gt;</li> <li><a href="https://github.com/dtolnay/anyhow/commit/29f2eddd1541201701a5a04caaed9c647f8fbddf"><code>29f2edd</code></a> Merge pull request <a href="https://redirect.github.com/dtolnay/anyhow/issues/416">#416</a> from dtolnay/oldnostd</li> <li><a href="https://github.com/dtolnay/anyhow/commit/2244db872ff66000fafec5ffc5ada3be263b6b58"><code>2244db8</code></a> Omit unused object_boxed from vtable in old no-std rustc</li> <li><a href="https://github.com/dtolnay/anyhow/commit/213a9c2e6cfba42cf6d9adba3ff75bda4d30d907"><code>213a9c2</code></a> Merge pull request <a href="https://redirect.github.com/dtolnay/anyhow/issues/414">#414</a> from dtolnay/nightly</li> <li><a href="https://github.com/dtolnay/anyhow/commit/02aa6b6faa5ca221debf7aad2279d54b37de5286"><code>02aa6b6</code></a> Make all nightly go through the module that was probed</li> <li>See full diff in <a href="https://github.com/dtolnay/anyhow/compare/1.0.97...1.0.98">compare view</a></li> </ul> </details> <br /> Updates `glam` from 0.30.1 to 0.30.2 <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.30.2] - 2025-04-13</h2> <h2>Added</h2> <ul> <li> <p>Added precision conversion functions for affine types: <code>Affine3A::as_daffine3</code>, <code>DAffine3::as_affine3a</code>, <code>Affine2::as_daffine2</code> and <code>DAffine3::as_affine2</code></p> </li> <li> <p>Added <code>normalize_and_length</code> method to <code>f32</code> and <code>f64</code> vectors.</p> </li> </ul> <h2>Changed</h2> <ul> <li>Vector min and max scalar implementations have been changed to use an <code>if</code> check instead of the built in Rust floating point primitive <code>min</code> and <code>max</code> methods. The Rust methods have special handling for <code>NaN</code> propagation however because this is not consistent between the different SIMD implementations in glam the most efficient implementation is preferred.</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/bitshifter/glam-rs/commit/73e8582703ea1790dd41d0faca3df8beda4730a3"><code>73e8582</code></a> Prepare 0.30.2 release. (<a href="https://redirect.github.com/bitshifter/glam-rs/issues/629">#629</a>)</li> <li><a href="https://github.com/bitshifter/glam-rs/commit/d5d92e48d628f2232295770c4a7b909e4b81c150"><code>d5d92e4</code></a> Fix warnings in nightly on using must_use on trait impls. (<a href="https://redirect.github.com/bitshifter/glam-rs/issues/628">#628</a>)</li> <li><a href="https://github.com/bitshifter/glam-rs/commit/a8170d78c157f1b699320b64ee10450e6d076e55"><code>a8170d7</code></a> Add vector normalize_and_length method. (<a href="https://redirect.github.com/bitshifter/glam-rs/issues/627">#627</a>)</li> <li><a href="https://github.com/bitshifter/glam-rs/commit/fecd1c099337049bad50ddb85c7ed2a532fb28e8"><code>fecd1c0</code></a> Updated CHANGELOG.</li> <li><a href="https://github.com/bitshifter/glam-rs/commit/20e64fa6325ad70db35c831b1013b334a02639ae"><code>20e64fa</code></a> Change scalar min and max functions to use comparison operators instead of pr...</li> <li><a href="https://github.com/bitshifter/glam-rs/commit/9e7cfbf1fae90b10e95c20c349c492af1b183d10"><code>9e7cfbf</code></a> Affine approx tests (<a href="https://redirect.github.com/bitshifter/glam-rs/issues/625">#625</a>)</li> <li><a href="https://github.com/bitshifter/glam-rs/commit/87518c8b590d30680260e056c774831dbda53a8b"><code>87518c8</code></a> Comment out some approx tests that are compiling yet.</li> <li><a href="https://github.com/bitshifter/glam-rs/commit/982a2d9b8cd7dd3b8e42ccfbfef8e53edeb5cb73"><code>982a2d9</code></a> Clarify is_negative_bitmask behaviour in doc comment.</li> <li><a href="https://github.com/bitshifter/glam-rs/commit/6a26bde8e0bd450cda5aa4730697813a38dd9943"><code>6a26bde</code></a> Add precision conversion functions for affine types (<a href="https://redirect.github.com/bitshifter/glam-rs/issues/624">#624</a>)</li> <li>See full diff in <a href="https://github.com/bitshifter/glam-rs/compare/0.30.1...0.30.2">compare view</a></li> </ul> </details> <br /> Updates `clap` from 4.5.35 to 4.5.36 <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.5.36</h2> <h2>[4.5.36] - 2025-04-11</h2> <h3>Fixes</h3> <ul> <li><em>(help)</em> Revert 4.5.35's &quot;Don't leave space for shorts if there are none&quot; for now</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.5.36] - 2025-04-11</h2> <h3>Fixes</h3> <ul> <li><em>(help)</em> Revert 4.5.35's &quot;Don't leave space for shorts if there are none&quot; for now</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/clap-rs/clap/commit/7a6475e3c1ac68f810c50c6c1507a85bc9aa82fa"><code>7a6475e</code></a> chore: Release</li> <li><a href="https://github.com/clap-rs/clap/commit/0266c4197f6e700376663bf30627acb986b28cf6"><code>0266c41</code></a> docs: Update changelog</li> <li><a href="https://github.com/clap-rs/clap/commit/6ec0b43448c9a4f9d744d42a2c96068f3ca66a79"><code>6ec0b43</code></a> Merge pull request <a href="https://redirect.github.com/clap-rs/clap/issues/5791">#5791</a> from okapia/zsh-default-fallback</li> <li><a href="https://github.com/clap-rs/clap/commit/e40168c2fd6e0d711d52699895ba475d178d5024"><code>e40168c</code></a> fix(zsh): Use _default as zsh completion fallback</li> <li>See full diff in <a href="https://github.com/clap-rs/clap/compare/clap_complete-v4.5.35...clap_complete-v4.5.36">compare view</a></li> </ul> </details> <br /> Updates `divan` from `f7eb6a5` to `52f9d49` <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/nvzqz/divan/commit/52f9d4983e68b16d1d77f8920df087ef8f8d6ba0"><code>52f9d49</code></a> Release v0.1.21</li> <li><a href="https://github.com/nvzqz/divan/commit/5afb0954869a590be8b15cfa1f0a01582c3a7d84"><code>5afb095</code></a> Fix broken <code>Divan::skip_exact</code></li> <li><a href="https://github.com/nvzqz/divan/commit/e4d112ccbc92b8c624a4bc36bf533e873bae082f"><code>e4d112c</code></a> Release v0.1.20</li> <li><a href="https://github.com/nvzqz/divan/commit/1d74108bbed8a30b079de44a2dd1aaf9be92636e"><code>1d74108</code></a> Fix broken <code>Divan::skip_regex</code></li> <li><a href="https://github.com/nvzqz/divan/commit/58988fc3041f9fe51aca031520041e69b238da18"><code>58988fc</code></a> Release v0.1.19</li> <li><a href="https://github.com/nvzqz/divan/commit/f43a742d0f73939f1088f134861b8a0466d52368"><code>f43a742</code></a> docs: Change &quot;changes&quot; to &quot;changed&quot; in changelog</li> <li><a href="https://github.com/nvzqz/divan/commit/f348769fb492dd53b85510ed5ee3f87e76e482a0"><code>f348769</code></a> docs: List most recent changes in changelog</li> <li><a href="https://github.com/nvzqz/divan/commit/07111fb6f82b307a38d0d26da842436504bce0fb"><code>07111fb</code></a> Abstract filters into <code>FilterSet</code></li> <li><a href="https://github.com/nvzqz/divan/commit/2c865cdf24ef05fa7861376df719e9b494ee5b6a"><code>2c865cd</code></a> docs: Add link to <code>prelude</code> module in changelog</li> <li><a href="https://github.com/nvzqz/divan/commit/9075b9e0ed52c1345fbea165ac7e7c045ddeeb95"><code>9075b9e</code></a> fix nextest support for parameterized benches</li> <li>See full diff in <a href="https://github.com/nvzqz/divan/compare/f7eb6a536a4c8c4a0404eac2bc4bf200af6ef5d5...52f9d4983e68b16d1d77f8920df087ef8f8d6ba0">compare view</a></li> </ul> </details> <br /> 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 <dependency name> major version` will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself) - `@dependabot ignore <dependency name> minor version` will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself) - `@dependabot ignore <dependency name>` will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself) - `@dependabot unignore <dependency name>` will remove all of the ignore conditions of the specified dependency - `@dependabot unignore <dependency name> <ignore condition>` will remove the ignore condition of the specified dependency and ignore conditions </details> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 59a41bd commit 190d414

File tree

2 files changed

+26
-26
lines changed

2 files changed

+26
-26
lines changed

Cargo.lock

Lines changed: 23 additions & 23 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ members = [
4848
resolver = '2'
4949

5050
[workspace.dependencies]
51-
anyhow = '1.0.97'
51+
anyhow = '1.0.98'
5252
approx = '0.5.1'
5353
arrayvec = '0.7.4'
5454
base64 = '0.22.1'
@@ -71,7 +71,7 @@ enumset = '1.1.5'
7171
fastrand = '2.1.0'
7272
flume = '0.11.1'
7373
futures-util = '0.3.31'
74-
glam = "0.30.0"
74+
glam = "0.30.2"
7575
heapless = '0.8.0'
7676
heed = "0.21.0"
7777
hex = '0.4.3'
@@ -126,7 +126,7 @@ version = '1.22.0'
126126

127127
[workspace.dependencies.clap]
128128
features = ['derive']
129-
version = '4.5.35'
129+
version = '4.5.36'
130130

131131
[workspace.dependencies.derive_more]
132132
features = ['display', 'from', 'deref', 'deref_mut', 'debug', 'constructor']

0 commit comments

Comments
 (0)