Skip to content

build(deps): bump the cargo group with 7 updates #168

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

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Aug 5, 2025

Bumps the cargo group with 7 updates:

Package From To
clap 4.5.41 4.5.42
fast-glob 0.4.5 1.0.0
quick-xml 0.38.0 0.38.1
serde_json 1.0.141 1.0.142
tokio 1.46.1 1.47.1
napi-derive 3.1.1 3.1.2
napi-build 2.2.2 2.2.3

Updates clap from 4.5.41 to 4.5.42

Release notes

Sourced from clap's releases.

v4.5.42

[4.5.42] - 2025-07-30

Fixes

  • Include subcommand visible long aliases in --help
Changelog

Sourced from clap's changelog.

[4.5.42] - 2025-07-30

Fixes

  • Include subcommand visible long aliases in --help
Commits
  • 27cc4b7 chore: Release
  • 16a4fc7 docs: Update changelog
  • 07f9f15 Merge pull request #5874 from tetzng/fix-fish-completions
  • 721deab chore: Release
  • a4be55b docs: Update changelog
  • fd5e691 Merge pull request #5877 from therealprof/features/use-btreemap-instead-of-so...
  • 6604e79 Use BTreeMap instead of a sorted Vec
  • 28e163a fix(complete): Remove {} and replace commas with newlines
  • b5a47c4 chore: Release
  • b154a7a docs: Update changelog
  • Additional commits viewable in compare view

Updates fast-glob from 0.4.5 to 1.0.0

Release notes

Sourced from fast-glob's releases.

v1.0.0

Other

  • clean up workflow files
  • (release) enable trusted publishing
  • (deps) update github-actions (#33)
  • (deps) update marcoieni/release-plz-action digest to 068d76d (#32)
  • (deps) update codspeedhq/action action to v3.7.0 (#31)
  • Add wax to benchmark (#24)
  • (deps) update dependency rust to v1.88.0 (#30)
  • (deps) update marcoieni/release-plz-action digest to 8724d33 (#29)
  • (deps) update marcoieni/release-plz-action digest to dde7b63 (#26)
  • (deps) update dependency rust to v1.87.0 (#28)
  • (deps) update dependency rust to v1.86.0 (#27)
  • (deps) update dependency rust to v1.85.1 (#25)
  • (deps) update github-actions (#23)
  • (deps) update marcoieni/release-plz-action digest to 476794e (#22)
  • (deps) update rust crate criterion2 to v3 (#21)
  • (deps) update github-actions (#18)
  • (deps) update github-actions (#19)
  • without any performance compromise (#17)
Changelog

Sourced from fast-glob's changelog.

1.0.0 - 2025-07-27

Other

  • clean up workflow files
  • (release) enable trusted publishing
  • (deps) update github-actions (#33)
  • (deps) update marcoieni/release-plz-action digest to 068d76d (#32)
  • (deps) update codspeedhq/action action to v3.7.0 (#31)
  • Add wax to benchmark (#24)
  • (deps) update dependency rust to v1.88.0 (#30)
  • (deps) update marcoieni/release-plz-action digest to 8724d33 (#29)
  • (deps) update marcoieni/release-plz-action digest to dde7b63 (#26)
  • (deps) update dependency rust to v1.87.0 (#28)
  • (deps) update dependency rust to v1.86.0 (#27)
  • (deps) update dependency rust to v1.85.1 (#25)
  • (deps) update github-actions (#23)
  • (deps) update marcoieni/release-plz-action digest to 476794e (#22)
  • (deps) update rust crate criterion2 to v3 (#21)
  • (deps) update github-actions (#18)
  • (deps) update github-actions (#19)
  • without any performance compromise (#17)
Commits
  • ca4d09b chore: release v1.0.0 (#20)
  • 5cced0b chore: clean up workflow files
  • 811a332 ci(release): enable trusted publishing
  • ea303ee chore(deps): update github-actions (#33)
  • b9f141e chore(deps): update marcoieni/release-plz-action digest to 068d76d (#32)
  • d50545a chore(deps): update codspeedhq/action action to v3.7.0 (#31)
  • 9bc8856 Add wax to benchmark (#24)
  • 44d9c53 chore(deps): update dependency rust to v1.88.0 (#30)
  • 0fd4df1 chore(deps): update marcoieni/release-plz-action digest to 8724d33 (#29)
  • 5073e0e chore(deps): update marcoieni/release-plz-action digest to dde7b63 (#26)
  • Additional commits viewable in compare view

Updates quick-xml from 0.38.0 to 0.38.1

Release notes

Sourced from quick-xml's releases.

v0.38.1 - EOL normalization in events

What's Changed

Important changes

To get text in events according to the XML specification (normalized EOLs) use the new methods xml_content() instead of decode(). Deserializer uses new method automatically.

New Features

  • #882: Add new methods to create Deserializer from existing NsReader:
    • Deserializer::borrowing
    • Deserializer::borrowing_with_resolver
    • Deserializer::buffering
    • Deserializer::buffering_with_resolver
  • #878: Add ability to serialize structs in $value fields. The struct name will be used as a tag name. Previously only enums was allowed there.
  • #806: Add BytesText::xml_content, BytesCData::xml_content and BytesRef::xml_content methods which returns XML EOL normalized strings.
  • #806: Add BytesText::html_content, BytesCData::html_content and BytesRef::html_content methods which returns HTML EOL normalized strings.

Bug Fixes

  • #806: Properly normalize EOL characters in Deserializer.
  • #888: Properly split attribute values by items when deserialize attribute into list of values and attribute requires decoding.

New Contributors

Full Changelog: tafia/quick-xml@v0.38.0...v0.38.1

Changelog

Sourced from quick-xml's changelog.

0.38.1 -- 2025-08-03

Important changes

To get text in events according to the XML specification (normalized EOLs) use the new methods xml_content() instead of decode(). Deserializer uses new method automatically.

New Features

  • #882: Add new methods to create Deserializer from existing NsReader:
    • Deserializer::borrowing
    • Deserializer::borrowing_with_resolver
    • Deserializer::buffering
    • Deserializer::buffering_with_resolver
  • #878: Add ability to serialize structs in $value fields. The struct name will be used as a tag name. Previously only enums was allowed there.
  • #806: Add BytesText::xml_content, BytesCData::xml_content and BytesRef::xml_content methods which returns XML EOL normalized strings.
  • #806: Add BytesText::html_content, BytesCData::html_content and BytesRef::html_content methods which returns HTML EOL normalized strings.

Bug Fixes

  • #806: Properly normalize EOL characters in Deserializer.
  • #888: Properly split attribute values by items when deserialize attribute into list of values and attribute requires decoding.

Misc Changes

#806: tafia/quick-xml#806 #878: tafia/quick-xml#878 #882: tafia/quick-xml#882 #888: tafia/quick-xml#888

Commits
  • 4699308 Release 0.38.1
  • 6894362 Explicitly recommend using xml_content() instead of decode() in events
  • d064697 Add support for criterion 0.7
  • c214c51 Merge pull request #888 from Mingun/fix-attr-list-de
  • b312a23 Properly split attribute values by items when deserialize attribute into list...
  • c00bbc1 Add regression test for deserializing list attributes that requires decoding
  • 6a6d23c Merge pull request #887 from Mingun/fix-eol-normalziation
  • b26e2f4 Fix incorrect assumption that normalize_eol_step always get only characters...
  • 6cf8c9f Merge pull request #884 from Mingun/eol-normalization
  • 38b44d4 Properly normalize EOL characters in Deserializer in elements (but not in a...
  • Additional commits viewable in compare view

Updates serde_json from 1.0.141 to 1.0.142

Release notes

Sourced from serde_json's releases.

v1.0.142

Commits

Updates tokio from 1.46.1 to 1.47.1

Release notes

Sourced from tokio's releases.

Tokio v1.47.1

1.47.1 (August 1st, 2025)

Fixed

  • process: fix panic from spurious pidfd wakeup (#7494)
  • sync: fix broken link of Python asyncio.Event in SetOnce docs (#7485)

#7485: tokio-rs/tokio#7485 #7494: tokio-rs/tokio#7494

Tokio v1.47.0

1.47.0 (July 25th, 2025)

This release adds poll_proceed and cooperative to the coop module for cooperative scheduling, adds SetOnce to the sync module which provides similar functionality to [std::sync::OnceLock], and adds a new method sync::Notify::notified_owned() which returns an OwnedNotified without a lifetime parameter.

Added

  • coop: add cooperative and poll_proceed (#7405)
  • sync: add SetOnce (#7418)
  • sync: add sync::Notify::notified_owned() (#7465)

Changed

  • deps: upgrade windows-sys 0.52 → 0.59 (#7117)
  • deps: update to socket2 v0.6 (#7443)
  • sync: improve AtomicWaker::wake performance (#7450)

Documented

  • metrics: fix listed feature requirements for some metrics (#7449)
  • runtime: improve safety comments of Readiness<'_> (#7415)

#7405: tokio-rs/tokio#7405 #7415: tokio-rs/tokio#7415 #7418: tokio-rs/tokio#7418 #7449: tokio-rs/tokio#7449 #7450: tokio-rs/tokio#7450 #7465: tokio-rs/tokio#7465

Commits

Updates napi-derive from 3.1.1 to 3.1.2

Release notes

Sourced from napi-derive's releases.

napi-derive-v3.1.2

Other

  • updated the following local packages: napi-derive-backend
Commits
  • a40e236 chore: release (#2814)
  • 642b5ab chore(deps): update dependency cross-env to v10 (#2811)
  • bde407d fix(napi-derive): generate types for threadsafe_function with WEAK=true corre...
  • 069661e chore: release (#2805)
  • 521b577 chore(release): publish
  • 552f9c9 chore(cli): setjmp link path (#2808)
  • 02bd12a fix(cli): migrate to latest wasm sjlj (#2806)
  • d450209 chore(deps): update release-plz/action action to v0.5.110 (#2807)
  • 7c3dc96 perf(napi): optimize HashMap allocation in FromNapiValue implementation for H...
  • 9f0dc58 chore(release): publish
  • Additional commits viewable in compare view

Updates napi-build from 2.2.2 to 2.2.3

Release notes

Sourced from napi-build's releases.

napi-build-v2.2.3

Other

  • (cli) setjmp link path (#2808)
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 group with 7 updates:

| Package | From | To |
| --- | --- | --- |
| [clap](https://github.com/clap-rs/clap) | `4.5.41` | `4.5.42` |
| [fast-glob](https://github.com/oxc-project/fast-glob) | `0.4.5` | `1.0.0` |
| [quick-xml](https://github.com/tafia/quick-xml) | `0.38.0` | `0.38.1` |
| [serde_json](https://github.com/serde-rs/json) | `1.0.141` | `1.0.142` |
| [tokio](https://github.com/tokio-rs/tokio) | `1.46.1` | `1.47.1` |
| [napi-derive](https://github.com/napi-rs/napi-rs) | `3.1.1` | `3.1.2` |
| [napi-build](https://github.com/napi-rs/napi-rs) | `2.2.2` | `2.2.3` |


Updates `clap` from 4.5.41 to 4.5.42
- [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.41...clap_complete-v4.5.42)

Updates `fast-glob` from 0.4.5 to 1.0.0
- [Release notes](https://github.com/oxc-project/fast-glob/releases)
- [Changelog](https://github.com/oxc-project/fast-glob/blob/main/CHANGELOG.md)
- [Commits](oxc-project/fast-glob@v0.4.5...v1.0.0)

Updates `quick-xml` from 0.38.0 to 0.38.1
- [Release notes](https://github.com/tafia/quick-xml/releases)
- [Changelog](https://github.com/tafia/quick-xml/blob/master/Changelog.md)
- [Commits](tafia/quick-xml@v0.38.0...v0.38.1)

Updates `serde_json` from 1.0.141 to 1.0.142
- [Release notes](https://github.com/serde-rs/json/releases)
- [Commits](serde-rs/json@v1.0.141...v1.0.142)

Updates `tokio` from 1.46.1 to 1.47.1
- [Release notes](https://github.com/tokio-rs/tokio/releases)
- [Commits](tokio-rs/tokio@tokio-1.46.1...tokio-1.47.1)

Updates `napi-derive` from 3.1.1 to 3.1.2
- [Release notes](https://github.com/napi-rs/napi-rs/releases)
- [Commits](napi-rs/napi-rs@napi-derive-v3.1.1...napi-derive-v3.1.2)

Updates `napi-build` from 2.2.2 to 2.2.3
- [Release notes](https://github.com/napi-rs/napi-rs/releases)
- [Commits](https://github.com/napi-rs/napi-rs/compare/napi-build@2.2.2...napi-build-v2.2.3)

---
updated-dependencies:
- dependency-name: clap
  dependency-version: 4.5.42
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo
- dependency-name: fast-glob
  dependency-version: 1.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: cargo
- dependency-name: quick-xml
  dependency-version: 0.38.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo
- dependency-name: serde_json
  dependency-version: 1.0.142
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo
- dependency-name: tokio
  dependency-version: 1.47.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: cargo
- dependency-name: napi-derive
  dependency-version: 3.1.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo
- dependency-name: napi-build
  dependency-version: 2.2.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo
...

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 Aug 5, 2025
Copy link

codecov bot commented Aug 5, 2025

Codecov Report

✅ All modified and coverable lines are covered by tests.
✅ Project coverage is 96.90%. Comparing base (13dc23c) to head (eea14c4).

Additional details and impacted files
@@           Coverage Diff           @@
##             main     #168   +/-   ##
=======================================
  Coverage   96.90%   96.90%           
=======================================
  Files          14       14           
  Lines        3132     3132           
=======================================
  Hits         3035     3035           
  Misses         97       97           

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.
  • 📦 JS Bundle Analysis: Save yourself from yourself by tracking and limiting bundle sizes in JS merges.

Copy link

codspeed-hq bot commented Aug 5, 2025

CodSpeed Performance Report

Merging #168 will not alter performance

Comparing dependabot/cargo/cargo-7a73f0b836 (eea14c4) with main (13dc23c)

Summary

✅ 1 untouched benchmarks

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