Skip to content

Commit b71b3f4

Browse files
chore(deps-rs): bump the minor group with 3 updates (#2392)
Bumps the minor group with 3 updates: [serde_with](https://github.com/jonasbb/serde_with), [indexmap](https://github.com/indexmap-rs/indexmap) and [bumpalo](https://github.com/fitzgen/bumpalo). Updates `serde_with` from 3.13.0 to 3.14.0 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/jonasbb/serde_with/releases">serde_with's releases</a>.</em></p> <blockquote> <h2>serde_with v3.14.0</h2> <h3>Added</h3> <ul> <li>Add support for <code>Range</code>, <code>RangeFrom</code>, <code>RangeTo</code>, <code>RangeInclusive</code> (<a href="https://redirect.github.com/jonasbb/serde_with/issues/851">#851</a>) <code>RangeToInclusive</code> is currently unsupported by serde.</li> <li>Add <code>schemars</code> implementations for <code>Bound</code>, <code>Range</code>, <code>RangeFrom</code>, <code>RangeTo</code>, <code>RangeInclusive</code>.</li> <li>Added support for <code>schemars</code> v1 under the <code>schemars_1</code> feature flag</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/jonasbb/serde_with/commit/16ea265e501c6c0655de727fb8aa3a1c8d5d0880"><code>16ea265</code></a> Bump version to 3.14 (<a href="https://redirect.github.com/jonasbb/serde_with/issues/865">#865</a>)</li> <li><a href="https://github.com/jonasbb/serde_with/commit/6b963ec7efa513105fa40014ecae59e4d984317f"><code>6b963ec</code></a> Bump version to 3.14</li> <li><a href="https://github.com/jonasbb/serde_with/commit/ff8df7add39a98e8480800e239234df7980b4dc4"><code>ff8df7a</code></a> Dead code cleanup (<a href="https://redirect.github.com/jonasbb/serde_with/issues/864">#864</a>)</li> <li><a href="https://github.com/jonasbb/serde_with/commit/e3a5f164cfe22cb38943ab28e672e38bdb63602b"><code>e3a5f16</code></a> Fix function naming scheme</li> <li><a href="https://github.com/jonasbb/serde_with/commit/20a8cf647a3abaa8cb7df662fc36c6c0f183ddf4"><code>20a8cf6</code></a> Remove unused derives and dead functions in schemars code</li> <li><a href="https://github.com/jonasbb/serde_with/commit/efe145bdfad4ea27fb342a9bd27dacbd54ab7ac9"><code>efe145b</code></a> Extract common DropGuard struct and NumberExt trait</li> <li><a href="https://github.com/jonasbb/serde_with/commit/1c3a1d3cd1c875d9a7c7d14b1a5272c8e34aad66"><code>1c3a1d3</code></a> Remove unused derives from internal Content type</li> <li><a href="https://github.com/jonasbb/serde_with/commit/c77b02ff8f42c22775e70a82bbe6dc057d24cb76"><code>c77b02f</code></a> Add support for <code>schemars</code> v1 (<a href="https://redirect.github.com/jonasbb/serde_with/issues/863">#863</a>)</li> <li><a href="https://github.com/jonasbb/serde_with/commit/e44f5dfba2c6ba73d91a2e1a9738c0c2e722819f"><code>e44f5df</code></a> Cleanup schemars tests (<a href="https://redirect.github.com/jonasbb/serde_with/issues/862">#862</a>)</li> <li><a href="https://github.com/jonasbb/serde_with/commit/17f3555d68a1a20f1cbb5603aa2f5ea54326ceba"><code>17f3555</code></a> Add support for <code>schemars</code> v1</li> <li>Additional commits viewable in <a href="https://github.com/jonasbb/serde_with/compare/v3.13.0...v3.14.0">compare view</a></li> </ul> </details> <br /> Updates `indexmap` from 2.9.0 to 2.10.0 <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/indexmap-rs/indexmap/blob/main/RELEASES.md">indexmap's changelog</a>.</em></p> <blockquote> <h2>2.10.0 (2025-06-26)</h2> <ul> <li>Added <code>extract_if</code> methods to <code>IndexMap</code> and <code>IndexSet</code>, similar to the methods for <code>HashMap</code> and <code>HashSet</code> with ranges like <code>Vec::extract_if</code>.</li> <li>Added more <code>#[track_caller]</code> annotations to functions that may panic.</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/indexmap-rs/indexmap/commit/91dbcc55d2b6be52b7f99929aebb7204a6576189"><code>91dbcc5</code></a> Merge pull request <a href="https://redirect.github.com/indexmap-rs/indexmap/issues/399">#399</a> from cuviper/release-2.10.0</li> <li><a href="https://github.com/indexmap-rs/indexmap/commit/67a5a712fcb667aa7b11e9b19a33fad764ae712c"><code>67a5a71</code></a> Release 2.10.0</li> <li><a href="https://github.com/indexmap-rs/indexmap/commit/37e519a3be8666e251d96156baeb230a80f9ad1f"><code>37e519a</code></a> Merge pull request <a href="https://redirect.github.com/indexmap-rs/indexmap/issues/308">#308</a> from cuviper/extract_if</li> <li><a href="https://github.com/indexmap-rs/indexmap/commit/4d7618fbc919be41dd0307075ae7fc2df58ea746"><code>4d7618f</code></a> Merge pull request <a href="https://redirect.github.com/indexmap-rs/indexmap/issues/398">#398</a> from cuviper/bench-deps</li> <li><a href="https://github.com/indexmap-rs/indexmap/commit/68201eb0a389f6f96cafd7b3f887e013557be041"><code>68201eb</code></a> Drop lazy_static for LazyLock</li> <li><a href="https://github.com/indexmap-rs/indexmap/commit/eaaaa56e717e19d6904645927a771abbeb9ae257"><code>eaaaa56</code></a> Switch to fastrand for bench shuffling</li> <li><a href="https://github.com/indexmap-rs/indexmap/commit/b19d84edafdb50a7207e2ce237f39f11092409fb"><code>b19d84e</code></a> Fix <code>clippy::needless_lifetimes</code></li> <li><a href="https://github.com/indexmap-rs/indexmap/commit/4f62778c866ac27c7e460fec78163188c8fb8e5f"><code>4f62778</code></a> <code>impl FusedIterator for ExtractIf</code></li> <li><a href="https://github.com/indexmap-rs/indexmap/commit/e09eaaf8e547ec56e564980b20f62b7c4d459fdd"><code>e09eaaf</code></a> Document and track <code>extract_if</code> panics</li> <li><a href="https://github.com/indexmap-rs/indexmap/commit/a8d7dc50a250971fe2203bdf23c2b5a307db7c86"><code>a8d7dc5</code></a> Add range support to <code>extract_if</code></li> <li>Additional commits viewable in <a href="https://github.com/indexmap-rs/indexmap/compare/2.9.0...2.10.0">compare view</a></li> </ul> </details> <br /> Updates `bumpalo` from 3.18.1 to 3.19.0 <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/fitzgen/bumpalo/blob/main/CHANGELOG.md">bumpalo's changelog</a>.</em></p> <blockquote> <h2>3.19.0</h2> <p>Released 2025-06-24.</p> <h3>Added</h3> <ul> <li>Added <code>bumpalo::collections::Vec::retain_mut</code>, similar to <code>std::vec::Vec::retain_mut</code>.</li> </ul> <hr /> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li>See full diff in <a href="https://github.com/fitzgen/bumpalo/commits">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 7c903da commit b71b3f4

File tree

2 files changed

+32
-19
lines changed

2 files changed

+32
-19
lines changed

Cargo.lock

Lines changed: 29 additions & 16 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
@@ -67,7 +67,7 @@ rstest = "0.24.0"
6767
semver = "1.0.26"
6868
serde = "1.0.219"
6969
serde_json = "1.0.140"
70-
serde_with = "3.13.0"
70+
serde_with = "3.14.0"
7171
serde_yaml = "0.9.34"
7272
smol_str = "0.3.1"
7373
static_assertions = "1.1.0"
@@ -81,9 +81,9 @@ clap-verbosity-flag = "3.0.3"
8181
assert_cmd = "2.0.17"
8282
assert_fs = "1.1.3"
8383
predicates = "3.1.0"
84-
indexmap = "2.9.0"
84+
indexmap = "2.10.0"
8585
fxhash = "0.2.1"
86-
bumpalo = "3.18.1"
86+
bumpalo = "3.19.0"
8787
pathsearch = "0.2.0"
8888
base64 = "0.22.1"
8989
ordered-float = "5.0.0"

0 commit comments

Comments
 (0)