Skip to content

Bump the cargo-deps group across 1 directory with 8 updates#3938

Closed
dependabot[bot] wants to merge 1 commit intomasterfrom
dependabot/cargo/cargo-deps-667f5d3ccc
Closed

Bump the cargo-deps group across 1 directory with 8 updates#3938
dependabot[bot] wants to merge 1 commit intomasterfrom
dependabot/cargo/cargo-deps-667f5d3ccc

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Oct 31, 2025

Bumps the cargo-deps group with 8 updates in the / directory:

Package From To
indexmap 2.11.4 2.12.0
wasm-bindgen-test 0.3.54 0.3.55
trybuild 1.0.112 1.0.113
proc-macro2 1.0.101 1.0.103
syn 2.0.106 2.0.108
indicatif 0.18.0 0.18.2
clap 4.5.49 4.5.51
warp 0.3.7 0.4.2

Updates indexmap from 2.11.4 to 2.12.0

Changelog

Sourced from indexmap's changelog.

2.12.0 (2025-10-17)

  • MSRV: Rust 1.82.0 or later is now required.
  • Updated the hashbrown dependency to 0.16 alone.
  • Error types now implement core::error::Error.
  • Added pop_if methods to IndexMap and IndexSet, similar to the method for Vec added in Rust 1.86.
Commits
  • 0e68f8a Merge pull request #422 from cuviper/msrv-1.82
  • 61c9c94 ci: only run full miri in the merge queue
  • db43f19 Release 2.12.0
  • b46a32a Move more to the lints table
  • 4849b16 Make use of RFC2145 type privacy for sealed traits
  • cfff4b7 Use bounds in associated type position
  • c7178d7 Use core::error::Error
  • 76b459b Use more precise capturing for some impl Trait
  • b3d9cc3 Use the primitive slice's is_sorted methods
  • 09db3cc Use inherent usize::div_ceil
  • Additional commits viewable in compare view

Updates wasm-bindgen-test from 0.3.54 to 0.3.55

Commits

Updates trybuild from 1.0.112 to 1.0.113

Release notes

Sourced from trybuild's releases.

1.0.113

  • Update target-triple dependency to v1
Commits

Updates proc-macro2 from 1.0.101 to 1.0.103

Release notes

Sourced from proc-macro2's releases.

1.0.103

  • Add semver-exempt Literal methods str_value, cstr_value, byte_str_value (#525)

1.0.102

  • Fix interaction of Display impls for TokenStream and Ident with formatting specifiers for padding, alignment, width (#523, #524)
Commits
  • d1bf13a Release 1.0.103
  • 29e08c0 Merge pull request #525 from dtolnay/literalvalue
  • f9eec24 Restore support for rustc older than 1.74
  • cc983fc Restore support for rustc older than 1.79
  • 465f781 Restore support for rustc older than 1.89
  • ab5231c Add string literal value tests
  • 4c039a8 Add Literal methods from proc_macro_value feature
  • 885fde9 Vendor rustc_literal_escaper v0.0.5
  • 39b016a Release 1.0.102
  • c3870f1 Add raw identifier Debug test
  • Additional commits viewable in compare view

Updates syn from 2.0.106 to 2.0.108

Release notes

Sourced from syn's releases.

2.0.108

  • Parse unrecognized or invalid literals as Lit::Verbatim (#1925)

2.0.107

  • Improve panic message when constructing a LitInt, LitFloat, or Lit from invalid syntax (#1917)
  • Improve panic message on Punctuated index out of bounds (#1922)
Commits
  • 7a7e331 Release 2.0.108
  • 30463af Merge pull request #1926 from dtolnay/litfuzz
  • 1cc9167 Add fuzzer for literal parsing
  • c49e1d3 Merge pull request #1925 from dtolnay/litparse
  • d047536 Report unexpected verbatim literals in test
  • ce97767 Parse unrecognized or invalid literals as Lit::Verbatim
  • e4a8957 Release 2.0.107
  • 1792e83 Merge pull request #1922 from dtolnay/outofbounds
  • 532e4af Improve panic message on Punctuated index out of bounds
  • 909c222 Add test of Punctuated indexing
  • Additional commits viewable in compare view

Updates indicatif from 0.18.0 to 0.18.2

Release notes

Sourced from indicatif's releases.

0.18.1

What's Changed

Commits

Updates clap from 4.5.49 to 4.5.51

Release notes

Sourced from clap's releases.

v4.5.51

[4.5.51] - 2025-10-29

Fixes

  • (help) Correctly calculate padding for short flags that take a value
  • (help) Don't panic on short flags using ArgAction::Count

v4.5.50

[4.5.50] - 2025-10-20

Features

  • Accept Cow where String and &str are accepted
Changelog

Sourced from clap's changelog.

[4.5.51] - 2025-10-29

Fixes

  • (help) Correctly calculate padding for short flags that take a value
  • (help) Don't panic on short flags using ArgAction::Count

[4.5.50] - 2025-10-20

Features

  • Accept Cow where String and &str are accepted
Commits
  • b49dae2 chore: Release
  • d37b0b5 docs: Update changelog
  • 3398b6a Merge pull request #6009 from gtema/complete_try_generate
  • 21fc9e4 feat(clap-complete): Introduce fallible generator
  • bd01bdc Merge pull request #6012 from epage/sub
  • ed0c63d docs(derive): Specify arg_required_else_help is set for users
  • e2188d9 chore(deps): Update Rust Stable to v1.87 (#6004)
  • e01f2b7 docs: Cleanup unused links
  • 6b12a81 chore: Release
  • 8dd92a7 docs: Update changelog
  • Additional commits viewable in compare view

Updates warp from 0.3.7 to 0.4.2

Release notes

Sourced from warp's releases.

v0.4.1

Fixes:

  • Fix Server::graceful() bounds incorrect requiring the filter to be a future.
  • Enable tokio/net when the server feature is enabled.
  • Render cfgs in the docs.

Full Changelog: seanmonstar/warp@v0.4.0...v0.4.1

v0.4.0

Changes:

  • Upgrade to hyper, http, and http-body to v1.
  • Remove multipart and websocket features from being enabled by default.
  • Put warp::serve() behind a server feature, not enabled by default.
  • Put warp::test behind a test feature, not enabled by default.
  • Remove tls feature and types.
  • Remove warp::addr filters.

Full Changelog: seanmonstar/warp@v0.3.7...v0.4.0

Changelog

Sourced from warp's changelog.

v0.4.2 (August 19, 2025)

  • Features:
    • Add support for passing UnixListener to incoming(listener).
  • Fixes:
    • Reduce some dependencies when server is not enabled.

v0.4.1 (August 6, 2025)

  • Fixes:
    • Fix Server::graceful() bounds incorrect requiring the filter to be a future.
    • Enable tokio/net when the server feature is enabled.
    • Render cfgs in the docs.

v0.4.0 (August 5, 2025)

  • Changes:
    • Upgrade to hyper, http, and http-body to v1.
    • Remove multipart and websocket features from being enabled by default.
    • Put warp::serve() behind a server feature, not enabled by default.
    • Put warp::test behind a test feature, not enabled by default.
    • Remove tls feature and types.
    • Remove warp::addr filters.
Commits

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 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 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

Bumps the cargo-deps group with 8 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [indexmap](https://github.com/indexmap-rs/indexmap) | `2.11.4` | `2.12.0` |
| [wasm-bindgen-test](https://github.com/wasm-bindgen/wasm-bindgen) | `0.3.54` | `0.3.55` |
| [trybuild](https://github.com/dtolnay/trybuild) | `1.0.112` | `1.0.113` |
| [proc-macro2](https://github.com/dtolnay/proc-macro2) | `1.0.101` | `1.0.103` |
| [syn](https://github.com/dtolnay/syn) | `2.0.106` | `2.0.108` |
| [indicatif](https://github.com/console-rs/indicatif) | `0.18.0` | `0.18.2` |
| [clap](https://github.com/clap-rs/clap) | `4.5.49` | `4.5.51` |
| [warp](https://github.com/seanmonstar/warp) | `0.3.7` | `0.4.2` |



Updates `indexmap` from 2.11.4 to 2.12.0
- [Changelog](https://github.com/indexmap-rs/indexmap/blob/main/RELEASES.md)
- [Commits](indexmap-rs/indexmap@2.11.4...2.12.0)

Updates `wasm-bindgen-test` from 0.3.54 to 0.3.55
- [Release notes](https://github.com/wasm-bindgen/wasm-bindgen/releases)
- [Changelog](https://github.com/wasm-bindgen/wasm-bindgen/blob/main/CHANGELOG.md)
- [Commits](https://github.com/wasm-bindgen/wasm-bindgen/commits)

Updates `trybuild` from 1.0.112 to 1.0.113
- [Release notes](https://github.com/dtolnay/trybuild/releases)
- [Commits](dtolnay/trybuild@1.0.112...1.0.113)

Updates `proc-macro2` from 1.0.101 to 1.0.103
- [Release notes](https://github.com/dtolnay/proc-macro2/releases)
- [Commits](dtolnay/proc-macro2@1.0.101...1.0.103)

Updates `syn` from 2.0.106 to 2.0.108
- [Release notes](https://github.com/dtolnay/syn/releases)
- [Commits](dtolnay/syn@2.0.106...2.0.108)

Updates `indicatif` from 0.18.0 to 0.18.2
- [Release notes](https://github.com/console-rs/indicatif/releases)
- [Commits](https://github.com/console-rs/indicatif/commits)

Updates `clap` from 4.5.49 to 4.5.51
- [Release notes](https://github.com/clap-rs/clap/releases)
- [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md)
- [Commits](clap-rs/clap@clap_complete-v4.5.49...clap_complete-v4.5.51)

Updates `warp` from 0.3.7 to 0.4.2
- [Release notes](https://github.com/seanmonstar/warp/releases)
- [Changelog](https://github.com/seanmonstar/warp/blob/master/CHANGELOG.md)
- [Commits](seanmonstar/warp@v0.3.7...v0.4.2)

---
updated-dependencies:
- dependency-name: indexmap
  dependency-version: 2.12.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: cargo-deps
- dependency-name: wasm-bindgen-test
  dependency-version: 0.3.55
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo-deps
- dependency-name: trybuild
  dependency-version: 1.0.113
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo-deps
- dependency-name: proc-macro2
  dependency-version: 1.0.103
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo-deps
- dependency-name: syn
  dependency-version: 2.0.108
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo-deps
- dependency-name: indicatif
  dependency-version: 0.18.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo-deps
- dependency-name: clap
  dependency-version: 4.5.51
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo-deps
- dependency-name: warp
  dependency-version: 0.4.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: cargo-deps
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file rust Pull requests that update Rust code labels Oct 31, 2025
@github-actions
Copy link

Visit the preview URL for this PR (updated for commit 830d305):

https://yew-rs-api--pr3938-dependabot-cargo-car-1bv9by5a.web.app

(expires Fri, 07 Nov 2025 03:07:13 GMT)

🔥 via Firebase Hosting GitHub Action 🌎

@github-actions
Copy link

Benchmark - core

Yew Master

vnode           fastest       │ slowest       │ median        │ mean          │ samples │ iters
╰─ vnode_clone  2.796 ns      │ 4.051 ns      │ 2.8 ns        │ 2.95 ns       │ 100     │ 1000000000

Pull Request

vnode           fastest       │ slowest       │ median        │ mean          │ samples │ iters
╰─ vnode_clone  2.772 ns      │ 4.04 ns       │ 2.782 ns      │ 3.178 ns      │ 100     │ 1000000000

@github-actions
Copy link

Benchmark - SSR

Yew Master

Details
Benchmark Round Min (ms) Max (ms) Mean (ms) Standard Deviation
Baseline 10 270.190 270.801 270.432 0.212
Hello World 10 469.526 475.960 472.785 1.927
Function Router 10 1592.469 1618.362 1610.278 7.919
Concurrent Task 10 1004.944 1006.841 1006.189 0.607
Many Providers 10 1029.828 1060.950 1044.684 9.430

Pull Request

Details
Benchmark Round Min (ms) Max (ms) Mean (ms) Standard Deviation
Baseline 10 270.162 270.732 270.409 0.204
Hello World 10 462.082 473.079 465.212 3.508
Function Router 10 1529.821 1545.100 1536.051 5.319
Concurrent Task 10 1005.195 1006.873 1005.997 0.706
Many Providers 10 1023.851 1049.873 1034.724 7.965

@github-actions
Copy link

Size Comparison

Details
examples master (KB) pull request (KB) diff (KB) diff (%)
async_clock 98.389 99.152 +0.764 +0.776%
boids 167.359 167.547 +0.188 +0.112%
communication_child_to_parent 91.523 91.738 +0.215 +0.235%
communication_grandchild_with_grandparent 102.633 102.849 +0.216 +0.210%
communication_grandparent_to_grandchild 98.984 99.201 +0.217 +0.219%
communication_parent_to_child 88.845 89.056 +0.211 +0.237%
contexts 103.965 104.180 +0.215 +0.207%
counter 85.527 85.747 +0.220 +0.257%
counter_functional 85.792 86.005 +0.213 +0.248%
dyn_create_destroy_apps 88.602 88.796 +0.194 +0.219%
file_upload 97.883 98.246 +0.363 +0.371%
function_delayed_input 91.126 91.564 +0.438 +0.481%
function_memory_game 169.782 169.844 +0.062 +0.036%
function_router 330.001 329.827 -0.174 -0.053%
function_todomvc 162.225 162.358 +0.134 +0.082%
futures 237.600 237.380 -0.220 -0.092%
game_of_life 104.207 104.305 +0.098 +0.094%
immutable 193.046 197.571 +4.525 +2.344%
inner_html 79.983 80.198 +0.215 +0.269%
js_callback 107.401 107.854 +0.453 +0.422%
keyed_list 179.729 179.942 +0.214 +0.119%
mount_point 83.212 83.431 +0.219 +0.263%
nested_list 113.015 113.144 +0.129 +0.114%
node_refs 90.861 91.074 +0.213 +0.234%
password_strength 1751.784 1751.626 -0.158 -0.009%
portals 92.354 92.573 +0.219 +0.237%
router 303.695 303.542 -0.153 -0.050%
suspense 111.706 112.218 +0.512 +0.458%
timer 88.197 88.357 +0.160 +0.182%
timer_functional 95.946 96.040 +0.094 +0.098%
todomvc 142.285 142.416 +0.131 +0.092%
two_apps 85.251 85.466 +0.215 +0.252%
web_worker_fib 132.957 133.856 +0.899 +0.676%
web_worker_prime 185.186 186.263 +1.077 +0.582%
webgl 82.542 82.733 +0.191 +0.232%

⚠️ The following example has changed its size significantly:

examples master (KB) pull request (KB) diff (KB) diff (%)
immutable 193.046 197.571 +4.525 +2.344%

@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github Nov 7, 2025

Looks like these dependencies are updatable in another way, so this is no longer needed.

@dependabot dependabot bot closed this Nov 7, 2025
@dependabot dependabot bot deleted the dependabot/cargo/cargo-deps-667f5d3ccc branch November 7, 2025 03:05
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 rust Pull requests that update Rust code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants