Skip to content

Commit cd9a7b7

Browse files
chore(deps-rs): bump the patch group across 1 directory with 4 updates (#2348)
Bumps the patch group with 4 updates in the / directory: [clap](https://github.com/clap-rs/clap), [pest](https://github.com/pest-parser/pest), [pest_derive](https://github.com/pest-parser/pest) and [petgraph](https://github.com/petgraph/petgraph). Updates `clap` from 4.5.39 to 4.5.40 <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.40] - 2025-06-09</h2> <h3>Features</h3> <ul> <li>Support quoted ids in <code>arg!()</code> macro (e.g. <code>arg!(&quot;check-config&quot;: ...)</code>)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/clap-rs/clap/commit/cff27dbf5749777b380abb0f3627ef3d3147844a"><code>cff27db</code></a> chore: Release</li> <li><a href="https://github.com/clap-rs/clap/commit/4ef41249f1ca5aeacabd1ef373581b17d96075b3"><code>4ef4124</code></a> docs: Update changelog</li> <li><a href="https://github.com/clap-rs/clap/commit/ca896175c11d03150291be4bb36c8a5b016cea73"><code>ca89617</code></a> Merge pull request <a href="https://redirect.github.com/clap-rs/clap/issues/5848">#5848</a> from jennings/jennings/push-xolwzyoornps</li> <li><a href="https://github.com/clap-rs/clap/commit/99b6391ee92bfd3356fc8085ee206df97f284e19"><code>99b6391</code></a> fix(complete): Fix PowerShell dynamic completion</li> <li>See full diff in <a href="https://github.com/clap-rs/clap/compare/clap_complete-v4.5.39...clap_complete-v4.5.40">compare view</a></li> </ul> </details> <br /> Updates `pest` from 2.8.0 to 2.8.1 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/pest-parser/pest/releases">pest's releases</a>.</em></p> <blockquote> <h2>v2.8.1</h2> <h2>What's Changed</h2> <ul> <li>Add reference to ws2markdown by <a href="https://github.com/dertuxmalwieder"><code>@​dertuxmalwieder</code></a> in <a href="https://redirect.github.com/pest-parser/pest/pull/1100">pest-parser/pest#1100</a></li> <li>remove once_cell (upon next MSRV bump!) by <a href="https://github.com/2ndDerivative"><code>@​2ndDerivative</code></a> in <a href="https://redirect.github.com/pest-parser/pest/pull/1102">pest-parser/pest#1102</a></li> </ul> <p>The Minimum Supported Rust Version (MSRV) for default features is <strong>1.80.0</strong> now.</p> <h2>New Contributors</h2> <ul> <li><a href="https://github.com/dertuxmalwieder"><code>@​dertuxmalwieder</code></a> made their first contribution in <a href="https://redirect.github.com/pest-parser/pest/pull/1100">pest-parser/pest#1100</a></li> <li><a href="https://github.com/2ndDerivative"><code>@​2ndDerivative</code></a> made their first contribution in <a href="https://redirect.github.com/pest-parser/pest/pull/1102">pest-parser/pest#1102</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/pest-parser/pest/compare/v2.8.0...v2.8.1">https://github.com/pest-parser/pest/compare/v2.8.0...v2.8.1</a></p> <h2>Warning: Semantic Versioning</h2> <p>Note that the node tag feature in 2.6.0 was a technically semver-breaking change even though it is a backwards-compatible / non-breaking change in the meta-grammar. There may be similar non-breaking changes to the meta-grammar between minor versions in the future. These non-breaking changes, however, may translate into semver-breaking changes due to the additional variants propagated from the generated <code>Rule</code> enum.</p> <p>This new feature caused issues in some Cargo version resolution situations where Cargo mixed different versions of pest dependencies. For this reason, these &quot;grammar non-breaking but semver-breaking&quot; changes are now available only under the &quot;grammar-extras&quot; feature flag. If you would like to use node tags (or other future grammar features), you can do so by enabling this flag on the pest_derive crate in your Cargo.toml:</p> <pre><code>... pest_derive = { version = &quot;2.8&quot;, features = [&quot;grammar-extras&quot;] } </code></pre> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/pest-parser/pest/commit/2f2ba3d9281d10219d23071f6fa744e25b2ee6ba"><code>2f2ba3d</code></a> bump version to 2.8.1 (<a href="https://redirect.github.com/pest-parser/pest/issues/1103">#1103</a>)</li> <li><a href="https://github.com/pest-parser/pest/commit/db5c82e0096a3bb4d2fcf4bebc4349e84a271fb3"><code>db5c82e</code></a> remove once_cell (upon next MSRV bump!) (<a href="https://redirect.github.com/pest-parser/pest/issues/1102">#1102</a>)</li> <li><a href="https://github.com/pest-parser/pest/commit/773976429faf46e43850a916f2eb58b75e803bd9"><code>7739764</code></a> bump the CI toolchain to 1.82 (<a href="https://redirect.github.com/pest-parser/pest/issues/1101">#1101</a>)</li> <li><a href="https://github.com/pest-parser/pest/commit/eecf4f64d8d4d48926c21303e287621d3b6e91da"><code>eecf4f6</code></a> Add reference to ws2markdown (<a href="https://redirect.github.com/pest-parser/pest/issues/1100">#1100</a>)</li> <li>See full diff in <a href="https://github.com/pest-parser/pest/compare/v2.8.0...v2.8.1">compare view</a></li> </ul> </details> <br /> Updates `pest_derive` from 2.8.0 to 2.8.1 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/pest-parser/pest/releases">pest_derive's releases</a>.</em></p> <blockquote> <h2>v2.8.1</h2> <h2>What's Changed</h2> <ul> <li>Add reference to ws2markdown by <a href="https://github.com/dertuxmalwieder"><code>@​dertuxmalwieder</code></a> in <a href="https://redirect.github.com/pest-parser/pest/pull/1100">pest-parser/pest#1100</a></li> <li>remove once_cell (upon next MSRV bump!) by <a href="https://github.com/2ndDerivative"><code>@​2ndDerivative</code></a> in <a href="https://redirect.github.com/pest-parser/pest/pull/1102">pest-parser/pest#1102</a></li> </ul> <p>The Minimum Supported Rust Version (MSRV) for default features is <strong>1.80.0</strong> now.</p> <h2>New Contributors</h2> <ul> <li><a href="https://github.com/dertuxmalwieder"><code>@​dertuxmalwieder</code></a> made their first contribution in <a href="https://redirect.github.com/pest-parser/pest/pull/1100">pest-parser/pest#1100</a></li> <li><a href="https://github.com/2ndDerivative"><code>@​2ndDerivative</code></a> made their first contribution in <a href="https://redirect.github.com/pest-parser/pest/pull/1102">pest-parser/pest#1102</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/pest-parser/pest/compare/v2.8.0...v2.8.1">https://github.com/pest-parser/pest/compare/v2.8.0...v2.8.1</a></p> <h2>Warning: Semantic Versioning</h2> <p>Note that the node tag feature in 2.6.0 was a technically semver-breaking change even though it is a backwards-compatible / non-breaking change in the meta-grammar. There may be similar non-breaking changes to the meta-grammar between minor versions in the future. These non-breaking changes, however, may translate into semver-breaking changes due to the additional variants propagated from the generated <code>Rule</code> enum.</p> <p>This new feature caused issues in some Cargo version resolution situations where Cargo mixed different versions of pest dependencies. For this reason, these &quot;grammar non-breaking but semver-breaking&quot; changes are now available only under the &quot;grammar-extras&quot; feature flag. If you would like to use node tags (or other future grammar features), you can do so by enabling this flag on the pest_derive crate in your Cargo.toml:</p> <pre><code>... pest_derive = { version = &quot;2.8&quot;, features = [&quot;grammar-extras&quot;] } </code></pre> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/pest-parser/pest/commit/2f2ba3d9281d10219d23071f6fa744e25b2ee6ba"><code>2f2ba3d</code></a> bump version to 2.8.1 (<a href="https://redirect.github.com/pest-parser/pest/issues/1103">#1103</a>)</li> <li><a href="https://github.com/pest-parser/pest/commit/db5c82e0096a3bb4d2fcf4bebc4349e84a271fb3"><code>db5c82e</code></a> remove once_cell (upon next MSRV bump!) (<a href="https://redirect.github.com/pest-parser/pest/issues/1102">#1102</a>)</li> <li><a href="https://github.com/pest-parser/pest/commit/773976429faf46e43850a916f2eb58b75e803bd9"><code>7739764</code></a> bump the CI toolchain to 1.82 (<a href="https://redirect.github.com/pest-parser/pest/issues/1101">#1101</a>)</li> <li><a href="https://github.com/pest-parser/pest/commit/eecf4f64d8d4d48926c21303e287621d3b6e91da"><code>eecf4f6</code></a> Add reference to ws2markdown (<a href="https://redirect.github.com/pest-parser/pest/issues/1100">#1100</a>)</li> <li>See full diff in <a href="https://github.com/pest-parser/pest/compare/v2.8.0...v2.8.1">compare view</a></li> </ul> </details> <br /> Updates `petgraph` from 0.8.1 to 0.8.2 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/petgraph/petgraph/releases">petgraph's releases</a>.</em></p> <blockquote> <h2>petgraph-v0.8.2</h2> <p>This minor release fixes several bugs, adds two new algorithms, slightly improves the performance of <code>maximum_matching</code>, adds a tool for parsing graphs from Dot/Graphviz files, and improves the documentation, making it more complete and uniform, as well as clarifying several points.</p> <h3>Bug Fixes</h3> <ul> <li>Ford Fulkerson sometimes Panics on StableGraphs (<a href="https://redirect.github.com/petgraph/petgraph/pull/793">#793</a>)</li> <li>Run Maximal Cliques Quickcheck only on Digraphs which are symmetrical (<a href="https://redirect.github.com/petgraph/petgraph/pull/800">#800</a>)</li> <li>Run Steiner Tree Quickcheck on the connected components to properly support disconnected graphs (<a href="https://redirect.github.com/petgraph/petgraph/pull/801">#801</a>)</li> <li>Quickcheck random01 function only outputs 0 (<a href="https://redirect.github.com/petgraph/petgraph/pull/798">#798</a>)</li> </ul> <h3>Documentation</h3> <ul> <li>Specify that Acyclic::try_udpate_edge may add an edge (<a href="https://redirect.github.com/petgraph/petgraph/pull/770">#770</a>)</li> <li>Update remove_node doc comment in graphmap.rs (<a href="https://redirect.github.com/petgraph/petgraph/pull/663">#663</a>)</li> <li>Add examples to minimum spanning tree functions (<a href="https://redirect.github.com/petgraph/petgraph/pull/808">#808</a>)</li> <li>Minimal typo fix in comments (<a href="https://redirect.github.com/petgraph/petgraph/pull/803">#803</a>)</li> <li>Update docs.rs (<a href="https://redirect.github.com/petgraph/petgraph/pull/807">#807</a>)</li> <li>Add note about <code>StableGraph::edge_indices</code> behaviour (<a href="https://redirect.github.com/petgraph/petgraph/pull/812">#812</a>)</li> <li>Clarification of references to nodes and V (refresh <a href="https://redirect.github.com/petgraph/petgraph/issues/358">#358</a>) (<a href="https://redirect.github.com/petgraph/petgraph/pull/814">#814</a>)</li> <li>Fix link and mention Dfs and Bfs as special case in examples (<a href="https://redirect.github.com/petgraph/petgraph/pull/816">#816</a>)</li> <li>Unify algo docs (<a href="https://redirect.github.com/petgraph/petgraph/pull/815">#815</a>)</li> </ul> <h3>New Features</h3> <ul> <li><em>(parser)</em> allow parsing graphs from Dot/Graphviz files (<a href="https://redirect.github.com/petgraph/petgraph/pull/653">#653</a>)</li> <li>Implement <code>DataMap</code> for <code>GraphMap</code> graphs (<a href="https://redirect.github.com/petgraph/petgraph/pull/776">#776</a>)</li> <li>Add Johnson's algorithm (<a href="https://redirect.github.com/petgraph/petgraph/pull/741">#741</a>)</li> <li>Add algorithm to find bridge edges (<a href="https://redirect.github.com/petgraph/petgraph/pull/590">#590</a>)</li> </ul> <h3>Performance</h3> <ul> <li>Reuse queue allocation in <code>maximum_matching</code> main loop (<a href="https://redirect.github.com/petgraph/petgraph/pull/817">#817</a>)</li> </ul> <h3>Refactor</h3> <ul> <li>Fix new clippy warnings (<a href="https://redirect.github.com/petgraph/petgraph/pull/791">#791</a>)</li> </ul> <h3>Contributors</h3> <ul> <li> <p><a href="https://github.com/RaoulLuque"><code>@​RaoulLuque</code></a></p> </li> <li> <p><a href="https://github.com/lmondada"><code>@​lmondada</code></a></p> </li> <li> <p><a href="https://github.com/MeGaGiGaGon"><code>@​MeGaGiGaGon</code></a></p> </li> <li> <p><a href="https://github.com/boguscoder"><code>@​boguscoder</code></a></p> </li> <li> <p><a href="https://github.com/starovoid"><code>@​starovoid</code></a></p> </li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/petgraph/petgraph/blob/master/CHANGELOG.md">petgraph's changelog</a>.</em></p> <blockquote> <h2><a href="https://github.com/petgraph/petgraph/compare/petgraph@v0.8.1...petgraph@v0.8.2">0.8.2</a> - 2025-06-06</h2> <p>This minor release fixes several bugs, adds two new algorithms, slightly improves the performance of <code>maximum_matching</code>, adds a tool for parsing graphs from Dot/Graphviz files, and improves the documentation, making it more complete and uniform, as well as clarifying several points.</p> <h3>Bug Fixes</h3> <ul> <li>Ford Fulkerson sometimes Panics on StableGraphs (<a href="https://redirect.github.com/petgraph/petgraph/pull/793">#793</a>)</li> <li>Run Maximal Cliques Quickcheck only on Digraphs which are symmetrical (<a href="https://redirect.github.com/petgraph/petgraph/pull/800">#800</a>)</li> <li>Run Steiner Tree Quickcheck on the connected components to properly support disconnected graphs (<a href="https://redirect.github.com/petgraph/petgraph/pull/801">#801</a>)</li> <li>Quickcheck random01 function only outputs 0 (<a href="https://redirect.github.com/petgraph/petgraph/pull/798">#798</a>)</li> </ul> <h3>Documentation</h3> <ul> <li>Specify that Acyclic::try_udpate_edge may add an edge (<a href="https://redirect.github.com/petgraph/petgraph/pull/770">#770</a>)</li> <li>Update remove_node doc comment in graphmap.rs (<a href="https://redirect.github.com/petgraph/petgraph/pull/663">#663</a>)</li> <li>Add examples to minimum spanning tree functions (<a href="https://redirect.github.com/petgraph/petgraph/pull/808">#808</a>)</li> <li>Minimal typo fix in comments (<a href="https://redirect.github.com/petgraph/petgraph/pull/803">#803</a>)</li> <li>Update docs.rs (<a href="https://redirect.github.com/petgraph/petgraph/pull/807">#807</a>)</li> <li>Add note about <code>StableGraph::edge_indices</code> behaviour (<a href="https://redirect.github.com/petgraph/petgraph/pull/812">#812</a>)</li> <li>Clarification of references to nodes and V (refresh <a href="https://redirect.github.com/petgraph/petgraph/issues/358">#358</a>) (<a href="https://redirect.github.com/petgraph/petgraph/pull/814">#814</a>)</li> <li>Fix link and mention Dfs and Bfs as special case in examples (<a href="https://redirect.github.com/petgraph/petgraph/pull/816">#816</a>)</li> <li>Unify algo docs (<a href="https://redirect.github.com/petgraph/petgraph/pull/815">#815</a>)</li> </ul> <h3>New Features</h3> <ul> <li><em>(parser)</em> allow parsing graphs from Dot/Graphviz files (<a href="https://redirect.github.com/petgraph/petgraph/pull/653">#653</a>)</li> <li>Implement <code>DataMap</code> for <code>GraphMap</code> graphs (<a href="https://redirect.github.com/petgraph/petgraph/pull/776">#776</a>)</li> <li>Add Johnson's algorithm (<a href="https://redirect.github.com/petgraph/petgraph/pull/741">#741</a>)</li> <li>Add algorithm to find bridge edges (<a href="https://redirect.github.com/petgraph/petgraph/pull/590">#590</a>)</li> </ul> <h3>Performance</h3> <ul> <li>Reuse queue allocation in <code>maximum_matching</code> main loop (<a href="https://redirect.github.com/petgraph/petgraph/pull/817">#817</a>)</li> </ul> <h3>Refactor</h3> <ul> <li>Fix new clippy warnings (<a href="https://redirect.github.com/petgraph/petgraph/pull/791">#791</a>)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/petgraph/petgraph/commit/2f8b190caa24b741cc30e98b5b0c4ae40b4b2133"><code>2f8b190</code></a> chore: release v0.8.2 (<a href="https://redirect.github.com/petgraph/petgraph/issues/768">#768</a>)</li> <li><a href="https://github.com/petgraph/petgraph/commit/eeb98c43393a6fd0c178004717ceb153c3a10443"><code>eeb98c4</code></a> docs: Unify algo docs (<a href="https://redirect.github.com/petgraph/petgraph/issues/815">#815</a>)</li> <li><a href="https://github.com/petgraph/petgraph/commit/dd2541c9edbcfec62212e676c483cbee985469c4"><code>dd2541c</code></a> docs: Fix link and mention Dfs and Bfs as special case in examples (<a href="https://redirect.github.com/petgraph/petgraph/issues/816">#816</a>)</li> <li><a href="https://github.com/petgraph/petgraph/commit/5fdd192ba8d9a36d40a1398543dbe50754f459bf"><code>5fdd192</code></a> perf: Reuse queue allocation in <code>maximum_matching</code> main loop (<a href="https://redirect.github.com/petgraph/petgraph/issues/817">#817</a>)</li> <li><a href="https://github.com/petgraph/petgraph/commit/d4272c1116378b2cd0fd5ae9c52ccbd76b741573"><code>d4272c1</code></a> docs: Clarification of references to nodes and V (refresh <a href="https://redirect.github.com/petgraph/petgraph/issues/358">#358</a>) (<a href="https://redirect.github.com/petgraph/petgraph/issues/814">#814</a>)</li> <li><a href="https://github.com/petgraph/petgraph/commit/90a220b2cdb54f5829a87e60ff14322acf7c6f51"><code>90a220b</code></a> docs: Add note about <code>StableGraph::edge_indices</code> behaviour (<a href="https://redirect.github.com/petgraph/petgraph/issues/812">#812</a>)</li> <li><a href="https://github.com/petgraph/petgraph/commit/f5f791c72ab40bf0331561f5e7218693ca38af4e"><code>f5f791c</code></a> docs: Update docs.rs (<a href="https://redirect.github.com/petgraph/petgraph/issues/807">#807</a>)</li> <li><a href="https://github.com/petgraph/petgraph/commit/04b6950fb270bc0ee63310ff0138a26e6397e51c"><code>04b6950</code></a> docs: Minimal typo fix in comments (<a href="https://redirect.github.com/petgraph/petgraph/issues/803">#803</a>)</li> <li><a href="https://github.com/petgraph/petgraph/commit/77ed02bfe992eb1c1f4a9f53e49651c1c1586e7f"><code>77ed02b</code></a> docs: Add examples to minimum spanning tree functions (<a href="https://redirect.github.com/petgraph/petgraph/issues/808">#808</a>)</li> <li><a href="https://github.com/petgraph/petgraph/commit/1125c33fea0ec3f85d25fc658f1cbe7de7631cd2"><code>1125c33</code></a> fix: Quickcheck random01 function only outputs 0 (<a href="https://redirect.github.com/petgraph/petgraph/issues/798">#798</a>)</li> <li>Additional commits viewable in <a href="https://github.com/petgraph/petgraph/compare/petgraph@v0.8.1...petgraph@v0.8.2">compare view</a></li> </ul> </details> <br /> <details> <summary>Most Recent Ignore Conditions Applied to This Pull Request</summary> | Dependency Name | Ignore Conditions | | --- | --- | | petgraph | [< 0.7, > 0.6.3] | </details> 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> Co-authored-by: Agustín Borgna <agustin.borgna@quantinuum.com>
1 parent 00f897f commit cd9a7b7

File tree

2 files changed

+246
-357
lines changed

2 files changed

+246
-357
lines changed

0 commit comments

Comments
 (0)