Skip to content

Conversation

dependabot[bot]
Copy link

@dependabot dependabot bot commented on behalf of github Sep 18, 2025

Bumps the cargo group with 35 updates in the / directory:

Package From To
clap 4.5.46 4.5.47
clap_complete 4.5.57 4.5.58
tracing-forest 0.1.6 0.2.0
serde_derive 1.0.219 1.0.225
bitflags 2.9.3 2.9.4
tempfile 3.21.0 3.22.0
bytesize 2.0.1 2.1.0
rustix 1.0.8 1.1.2
trybuild 1.0.110 1.0.111
expectrl 0.7.1 0.8.0
windows-sys 0.60.2 0.61.0
windows 0.61.3 0.62.0
insta 1.43.1 1.43.2
async-io 2.5.0 2.6.0
fs-err 3.1.1 3.1.2
serde_json 1.0.143 1.0.145
zip 4.6.0 5.1.1
aws-lc-rs 1.13.3 1.14.0
cc 1.2.35 1.2.37
errno 0.3.13 0.3.14
hyper-util 0.1.16 0.1.17
indexmap 2.11.0 2.11.3
libredox 0.1.9 0.1.10
log 0.4.27 0.4.28
polling 3.10.0 3.11.0
rustls-webpki 0.103.4 0.103.6
schannel 0.1.27 0.1.28
security-framework-sys 2.14.0 2.15.0
serde_spanned 1.0.0 1.0.1
tokio-rustls 0.26.2 0.26.3
toml 0.9.5 0.9.6
unicode-ident 1.0.18 1.0.19
winapi-util 0.1.10 0.1.11
wit-bindgen 0.45.0 0.45.1
zerocopy 0.8.26 0.8.27

Updates clap from 4.5.46 to 4.5.47

Release notes

Sourced from clap's releases.

v4.5.47

[4.5.47] - 2025-09-02

Features

  • Added impl FromArgMatches for ()
  • Added impl Args for ()
  • Added impl Subcommand for ()
  • Added impl FromArgMatches for Infallible
  • Added impl Subcommand for Infallible

Fixes

  • (derive) Update runtime error text to match clap
Changelog

Sourced from clap's changelog.

[4.5.47] - 2025-09-02

Features

  • Added impl FromArgMatches for ()
  • Added impl Args for ()
  • Added impl Subcommand for ()
  • Added impl FromArgMatches for Infallible
  • Added impl Subcommand for Infallible

Fixes

  • (derive) Update runtime error text to match clap
Commits
  • f046ca6 chore: Release
  • 436949d docs: Update changelog
  • 1ddab84 Merge pull request #5954 from epage/tests
  • 8a66dbf test(complete): Add more native cases
  • 76465cf test(complete): Make things more consistent
  • 232cedb test(complete): Remove redundant index
  • 02244a6 Merge pull request #5949 from krobelus/option-name-completions-after-positionals
  • 2e13847 fix(complete): Missing options in multi-val arg
  • 74388d7 test(complete): Multi-valued, unbounded positional
  • 5b3d45f refactor(complete): Extract function for options
  • Additional commits viewable in compare view

Updates clap_complete from 4.5.57 to 4.5.58

Commits
  • 88f13cb chore: Release
  • fe2d731 docs: Update changelog
  • b256739 Merge pull request #6131 from mernen/do-not-suggest-opts-after-escape
  • 8aaf704 fix(complete): Do not suggest options after "--"
  • 4a86fee test(complete): Illustrate current behavior
  • 281f8ae Merge pull request #6126 from epage/p
  • 3cbce42 docs(cookbook): Make typed-derive easier to maintain
  • 9fd4dc9 docs(cookbook): Provide a custom TypedValueParser
  • 8f8e861 docs(cookbook): Add local enum to typed-derive
  • 926bafe docs(cookbook): Hint at overriding value_name
  • Additional commits viewable in compare view

Updates tracing-forest from 0.1.6 to 0.2.0

Commits

Updates serde_derive from 1.0.219 to 1.0.225

Release notes

Sourced from serde_derive's releases.

v1.0.225

  • Avoid triggering a deprecation warning in derived Serialize and Deserialize impls for a data structure that contains its own deprecations (#2879, thanks @​rcrisanti)

v1.0.224

  • Remove private types being suggested in rustc diagnostics (#2979)

v1.0.223

  • Fix serde_core documentation links (#2978)

v1.0.222

  • Make serialize_with attribute produce code that works if respanned to 2024 edition (#2950, thanks @​aytey)

v1.0.221

  • Documentation improvements (#2973)
  • Deprecate serde_if_integer128! macro (#2975)

v1.0.220

Commits
  • 1d7899d Release 1.0.225
  • 97168d3 Touch up PR 2879
  • 373b11d Merge pull request 2879 from rcrisanti/fix/silence-deprecation-warnings-derive
  • 69072f2 Merge pull request 2931 from Mingun/unify-serde-access
  • 5b37e8a Merge pull request #2980 from dtolnay/private
  • b47f4df Unify access to the serde namespace
  • cbe98a9 Use differently named __private module per patch release
  • 957996f Make all use of __private go through interpolation
  • 1699882 Release 1.0.224
  • 840f6ec Merge pull request #2979 from dtolnay/private
  • Additional commits viewable in compare view

Updates serde from 1.0.219 to 1.0.225

Release notes

Sourced from serde's releases.

v1.0.225

  • Avoid triggering a deprecation warning in derived Serialize and Deserialize impls for a data structure that contains its own deprecations (#2879, thanks @​rcrisanti)

v1.0.224

  • Remove private types being suggested in rustc diagnostics (#2979)

v1.0.223

  • Fix serde_core documentation links (#2978)

v1.0.222

  • Make serialize_with attribute produce code that works if respanned to 2024 edition (#2950, thanks @​aytey)

v1.0.221

  • Documentation improvements (#2973)
  • Deprecate serde_if_integer128! macro (#2975)

v1.0.220

Commits
  • 1d7899d Release 1.0.225
  • 97168d3 Touch up PR 2879
  • 373b11d Merge pull request 2879 from rcrisanti/fix/silence-deprecation-warnings-derive
  • 69072f2 Merge pull request 2931 from Mingun/unify-serde-access
  • 5b37e8a Merge pull request #2980 from dtolnay/private
  • b47f4df Unify access to the serde namespace
  • cbe98a9 Use differently named __private module per patch release
  • 957996f Make all use of __private go through interpolation
  • 1699882 Release 1.0.224
  • 840f6ec Merge pull request #2979 from dtolnay/private
  • Additional commits viewable in compare view

Updates bitflags from 2.9.3 to 2.9.4

Release notes

Sourced from bitflags's releases.

2.9.4

What's Changed

Full Changelog: bitflags/bitflags@2.9.3...2.9.4

Changelog

Sourced from bitflags's changelog.

2.9.4

What's Changed

Full Changelog: bitflags/bitflags@2.9.3...2.9.4

Commits

Updates tempfile from 3.21.0 to 3.22.0

Changelog

Sourced from tempfile's changelog.

3.22.0

  • Updated windows-sys requirement to allow version 0.61.x
  • Remove unstable-windows-keep-open-tempfile feature.
Commits
  • f720dbe chore: release 3.22.0
  • 55d742c chore: remove deprecated unstable feature flag
  • bc41a0b build(deps): update windows-sys requirement from >=0.52, <0.61 to >=0.52, <0....
  • 3c55387 test: make sure we don't drop tempdirs early (#373)
  • 17bf644 doc(builder): clarify permissions (#372)
  • c7423f1 doc(env): document the alternative to setting the tempdir (#371)
  • 5af60ca test(wasi): run a few tests that shouldn't have been disabled (#370)
  • 6c0c561 fix(doc): temp_dir doesn't check if writable
  • See full diff in compare view

Updates bytesize from 2.0.1 to 2.1.0

Release notes

Sourced from bytesize's releases.

bytesize: v2.1.0

  • Support parsing and formatting exabytes (EB) & exbibytes (EiB).
  • Migrate serde dependency to serde_core.
Changelog

Sourced from bytesize's changelog.

2.1.0

  • Support parsing and formatting exabytes (EB) & exbibytes (EiB).
  • Migrate serde dependency to serde_core.
Commits
  • ac756bb chore(bytesize): prepare release 2.1.0
  • 3a0de52 chore: migrate to serde_core
  • e816797 feat: add exabyte and exbibyte support (#101)
  • 3b89d01 chore(deps): bump actions/checkout from 4 to 5 (#105)
  • 62e38cb chore(deps): bump actions-rust-lang/setup-rust-toolchain (#104)
  • 4beb271 chore(deps): bump codecov/codecov-action from 5.4.3 to 5.5.0 (#106)
  • 731c44c chore(deps): bump taiki-e/install-action from 2.57.8 to 2.58.29 (#107)
  • 6613704 chore(deps): bump arbitrary from 1.4.1 to 1.4.2 (#108)
  • 1463664 chore(deps): bump serde_json from 1.0.142 to 1.0.143 (#109)
  • 8476c8a fix(ci): use variables directly in formatting for clippy (#103)
  • Additional commits viewable in compare view

Updates rustix from 1.0.8 to 1.1.2

Commits

Updates trybuild from 1.0.110 to 1.0.111

Release notes

Sourced from trybuild's releases.

1.0.111

  • Normalize dependency crate's version in filepaths (#316)
Commits

Updates expectrl from 0.7.1 to 0.8.0

Commits

Updates windows-sys from 0.60.2 to 0.61.0

Release notes

Sourced from windows-sys's releases.

61

Major crate updates:

  • windows 0.59.0
  • windows-core 0.59.0
    • windows-implement 0.59.0
    • windows-interface 0.59.0
  • windows-targets 0.53.0
    • windows_i686_msvc 0.53.0
    • windows_x86_64_msvc 0.53.0
    • windows_aarch64_msvc 0.53.0
    • windows_i686_gnu 0.53.0
    • windows_x86_64_gnu 0.53.0
    • windows_i686_gnullvm 0.53.0
    • windows_x86_64_gnullvm 0.53.0
    • windows_aarch64_gnullvm 0.53.0
  • windows-bindgen 0.59.0
  • windows-registry 0.4.0
  • windows-result 0.3.0
  • windows-strings 0.3.0
  • cppwinrt 0.2.0

Minor crate updates:

  • windows-version 0.1.2

Excluded:

  • windows-sys 0.59.0

Things to keep in mind:

  • The tag/release names no longer map directly to the crate versions, so to find samples for a particular release requires looking at the releases page and finding the release that most recently updated a particular crate.

  • The windows-bindgen crate includes the major code generation overhaul that brings many improvements - be sure to check out the PR description for more information. The resulting code gen depends on the new version of windows-core and its dependencies, unless you include the --sys option. #3359

  • The cppwinrt crate constitutes a major update due to streamlining the error handling. #3415

  • The windows-registry, windows-strings, and windows-result crates are also major version updates since they include small breaking changes.

  • The windows-targets crate finally receives a major version update, the first in over a year. This is due to #3359 and #3342 potentially introducing breaking changes. Although unlikely, these updates introduced sufficient changes that make it hard to ensure that the windows-targets libs don't break existing code. As we're updating windows-targets anyway, I took the liberty to bump the MSRV to 1.60 - to match the latest version of windows-sys - and remove the old but unused doc macro feature. Both remained for compatibility with very old dependents of the windows-targets crate.

  • The windows-version crate receives a minor update to update its dependency on the windows-targets crate.

  • Beyond these specifics, this update is the culmination of around 6 months worth of work on the windows-rs project. The biggest improvements comes from the new code generation engine, but many other improvements are now also available for production. This includes support for many new lints, warnings, and suggestions provided by the Rust toolchain; much smaller code gen thanks to deriving many more traits; more efficient code gen; major improvements to WinRT type system and implementation support; more robust and consistent error handling; stock collection and async support; improved support for class hierarchies; and much more!

In addition to "what's changed" below, check out what's changed for notes for 0.60.0 and 0.59.0 for additional changes that roll up to the crates published as part of this release.

What's Changed

... (truncated)

Commits

Updates windows from 0.61.3 to 0.62.0

Commits

Updates insta from 1.43.1 to 1.43.2

Release notes

Sourced from insta's releases.

1.43.2

Release Notes

  • Fix panics when cargo metadata fails to execute or parse (e.g., when cargo is not in PATH or returns invalid output). Now falls back to using the manifest directory as the workspace root. #798 (@​adriangb)
  • Fix clippy uninlined_format_args lint warnings. #801
  • Changed diff line numbers to 1-based indexing. #799
  • Preserve snapshot names with INSTA_GLOB_FILTER. #786
  • Bumped libc crate to 0.2.174, fixing building on musl targets, and increasing the MSRV of insta to 1.64.0 (released Sept 2022). #784
  • Fix clippy 1.88 errors. #783
  • Fix source path in snapshots for non-child workspaces. #778
  • Add lifetime to Selector in redaction iterator. #779

Install cargo-insta 1.43.2

Install prebuilt binaries via shell script

curl --proto '=https' --tlsv1.2 -LsSf https://github.com/mitsuhiko/insta/releases/download/1.43.2/cargo-insta-installer.sh | sh

Install prebuilt binaries via powershell script

powershell -ExecutionPolicy ByPass -c "irm https://github.com/mitsuhiko/insta/releases/download/1.43.2/cargo-insta-installer.ps1 | iex"

Download cargo-insta 1.43.2

File Platform Checksum
cargo-insta-aarch64-apple-darwin.tar.xz Apple Silicon macOS checksum
cargo-insta-x86_64-apple-darwin.tar.xz Intel macOS checksum
cargo-insta-x86_64-pc-windows-msvc.zip x64 Windows checksum
cargo-insta-x86_64-unknown-linux-gnu.tar.xz x64 Linux checksum
cargo-insta-x86_64-unknown-linux-musl.tar.xz x64 MUSL Linux checksum
Changelog

Sourced from insta's changelog.

1.43.2

  • Fix panics when cargo metadata fails to execute or parse (e.g., when cargo is not in PATH or returns invalid output). Now falls back to using the manifest directory as the workspace root. #798 (@​adriangb)
  • Fix clippy uninlined_format_args lint warnings. #801
  • Changed diff line numbers to 1-based indexing. #799
  • Preserve snapshot names with INSTA_GLOB_FILTER. #786
  • Bumped libc crate to 0.2.174, fixing building on musl targets, and increasing the MSRV of insta to 1.64.0 (released Sept 2022). #784
  • Fix clippy 1.88 errors. #783
  • Fix source path in snapshots for non-child workspaces. #778
  • Add lifetime to Selector in redaction iterator. #779
Commits
  • 01fc57f Fix Windows runner configuration for releases
  • 88c9a2f Prepare CHANGELOG for 1.43.2 release (#802)
  • d03c2a6 Improve error handling for cargo workspace detection (#800)
  • 55987ac Fix clippy uninlined_format_args lint warnings (#801)
  • ae26e81 Change diff line numbers to 1-based indexing (#799)
  • 26efb60 Release insta 1.43.2 (#791)
  • 7793782 Preserve snapshot names with INSTA_GLOB_FILTER (#786)
  • 1d6e0c7 chore: bump libc crate (#784)
  • 1a17ea9 chore: fix clippy 1.88 errors (#783)
  • 7d0de48 Fix source path in snapshots for non-child workspaces (#778)
  • Additional commits viewable in compare view

Updates async-io from 2.5.0 to 2.6.0

Release notes

Sourced from async-io's releases.

v2.6.0

  • Bump MSRV to 1.71. (#243)
  • Expose Timer::clear. (#239)
  • Implement IoSafe for std::io::PipeReader and std::io::PipeWriter (#237)
  • Update to windows-sys v0.61. (#243)
  • Remove dependency on async_lock. (#240)
Changelog

Sourced from async-io's changelog.

Version 2.6.0

  • Bump MSRV to 1.71. (#243)
  • Expose Timer::clear. (#239)
  • Implement IoSafe for std::io::PipeReader and std::io::PipeWriter (#237)
  • Update to windows-sys v0.61. (#243)
  • Remove dependency on async_lock. (#240)
Commits
  • 576b470 Release 2.6.0
  • aabee96 Update windows-sys requirement from 0.60 to 0.61 (#243)
  • db95d91 Add doc aliases sleep and timeout to Timer (#242)
  • 25e8610 Use std::future::poll_fn instead of futures_lite::future::poll_fn
  • 714aecc Use std::pin::pin instead of futures_lite::pin
  • 5112ed7 Use std::task::ready instead of futures_lite::ready
  • bac7eac Use std::sync::OnceLock instead of async_lock::OnceCell
  • 12b4f2e Bump MSRV to 1.70
  • d1c6738 Make Timer::clear public
  • be049a8 impl IoSafe for std::io::PipeReader & std::io::PipeWriter (#237)
  • Additional commits viewable in compare view

Updates fs-err from 3.1.1 to 3.1.2

Changelog

Sourced from fs-err's changelog.

3.1.2

  • Added wrappers for locking methods added to File in Rust 1.89 (#75)
Commits

Updates serde_json from 1.0.143 to 1.0.145

Release notes

Sourced from serde_json's releases.

v1.0.145

  • Raise serde version requirement to >=1.0.220

v1.0.144

  • Switch serde dependency to serde_core (#1285)
Commits

Updates zip from 4.6.0 to 5.1.1

Release notes

Sourced from zip's releases.

v5.1.1

🐛 Bug Fixes

  • panic when reading empty extended-timestamp field (#404) (#422)
  • Restore original file timestamp when unzipping with chrono (#46)

⚙️ Miscellaneous Tasks

  • Configure Amazon Q rules (#421)

v5.1.0

🚀 Features

  • Add legacy shrink/reduce/implode compression (#303)

v5.0.1

🐛 Bug Fixes

  • AES metadata was not copied correctly in raw copy methods, which could corrupt the copied file. (#417)

v5.0.0

🚀 Features

  • Implement by_path*() methods on ZipArchive (#382)

v4.6.1

🐛 Bug Fixes

  • Fixes an issue introduced by the swap from lzma-rs to liblzma (#407)
Changelog

Sourced from zip's changelog.

5.1.1 - 2025-09-11

🐛 Bug Fixes

  • panic when reading empty extended-timestamp field (#404) (#422)
  • Restore original file timestamp when unzipping with chrono (#46)

⚙️ Miscellaneous Tasks

  • Configure Amazon Q rules (#421)

5.1.0 - 2025-09-10

🚀 Features

  • Add legacy shrink/reduce/implode compression (#303)

5.0.1 - 2025-09-09

🐛 Bug Fixes

  • AES metadata was not copied correctly in raw copy methods, which could corrupt the copied file. (#417)

5.0.0 - 2025-09-05

🚀 Features

  • Implement by_path*() methods on ZipArchive (#382)

4.6.1 - 2025-09-03

🐛 Bug Fixes

  • Fixes an issue introduced by the swap from lzma-rs to liblzma (#407)
Commits

Updates aws-lc-rs from 1.13.3 to 1.14.0

Release notes

Sourced from aws-lc-rs's releases.

aws-lc-rs v1.14.0

What's Changed

Build Improvements

Issues Being Resolved

  • Feature Request: RandomizedNonceKey for AES-GCM-SIV -- aws/aws-lc-rs#842
  • Add way to pre-parse signature keys (i.e. turn signature::UnparsedPublicKey to PublicKey) -- aws/aws-lc-rs#849
  • Build failed for x86_64-pc-windows-gnu target regardless of AWS_LC_SYS_PREBUILT_NASM=1 -- aws/aws-lc-rs#850

Other Merged PRs

New Contributors

Full Changelog: aws/aws-lc-rs@v1.13.3...v1.14.0

Commits

Updates aws-lc-sys from 0.30.0 to 0.31.0

Commits

Bumps the cargo group with 35 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [clap](https://github.com/clap-rs/clap) | `4.5.46` | `4.5.47` |
| [clap_complete](https://github.com/clap-rs/clap) | `4.5.57` | `4.5.58` |
| [tracing-forest](https://github.com/QnnOkabayashi/tracing-forest) | `0.1.6` | `0.2.0` |
| [serde_derive](https://github.com/serde-rs/serde) | `1.0.219` | `1.0.225` |
| [bitflags](https://github.com/bitflags/bitflags) | `2.9.3` | `2.9.4` |
| [tempfile](https://github.com/Stebalien/tempfile) | `3.21.0` | `3.22.0` |
| [bytesize](https://github.com/bytesize-rs/bytesize) | `2.0.1` | `2.1.0` |
| [rustix](https://github.com/bytecodealliance/rustix) | `1.0.8` | `1.1.2` |
| [trybuild](https://github.com/dtolnay/trybuild) | `1.0.110` | `1.0.111` |
| [expectrl](https://github.com/zhiburt/expectrl) | `0.7.1` | `0.8.0` |
| [windows-sys](https://github.com/microsoft/windows-rs) | `0.60.2` | `0.61.0` |
| [windows](https://github.com/microsoft/windows-rs) | `0.61.3` | `0.62.0` |
| [insta](https://github.com/mitsuhiko/insta) | `1.43.1` | `1.43.2` |
| [async-io](https://github.com/smol-rs/async-io) | `2.5.0` | `2.6.0` |
| [fs-err](https://github.com/andrewhickman/fs-err) | `3.1.1` | `3.1.2` |
| [serde_json](https://github.com/serde-rs/json) | `1.0.143` | `1.0.145` |
| [zip](https://github.com/zip-rs/zip2) | `4.6.0` | `5.1.1` |
| [aws-lc-rs](https://github.com/aws/aws-lc-rs) | `1.13.3` | `1.14.0` |
| [cc](https://github.com/rust-lang/cc-rs) | `1.2.35` | `1.2.37` |
| [errno](https://github.com/lambda-fairy/rust-errno) | `0.3.13` | `0.3.14` |
| [hyper-util](https://github.com/hyperium/hyper-util) | `0.1.16` | `0.1.17` |
| [indexmap](https://github.com/indexmap-rs/indexmap) | `2.11.0` | `2.11.3` |
| libredox | `0.1.9` | `0.1.10` |
| [log](https://github.com/rust-lang/log) | `0.4.27` | `0.4.28` |
| [polling](https://github.com/smol-rs/polling) | `3.10.0` | `3.11.0` |
| [rustls-webpki](https://github.com/rustls/webpki) | `0.103.4` | `0.103.6` |
| [schannel](https://github.com/steffengy/schannel-rs) | `0.1.27` | `0.1.28` |
| [security-framework-sys](https://github.com/kornelski/rust-security-framework) | `2.14.0` | `2.15.0` |
| [serde_spanned](https://github.com/toml-rs/toml) | `1.0.0` | `1.0.1` |
| [tokio-rustls](https://github.com/rustls/tokio-rustls) | `0.26.2` | `0.26.3` |
| [toml](https://github.com/toml-rs/toml) | `0.9.5` | `0.9.6` |
| [unicode-ident](https://github.com/dtolnay/unicode-ident) | `1.0.18` | `1.0.19` |
| [winapi-util](https://github.com/BurntSushi/winapi-util) | `0.1.10` | `0.1.11` |
| [wit-bindgen](https://github.com/bytecodealliance/wit-bindgen) | `0.45.0` | `0.45.1` |
| [zerocopy](https://github.com/google/zerocopy) | `0.8.26` | `0.8.27` |



Updates `clap` from 4.5.46 to 4.5.47
- [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.46...clap_complete-v4.5.47)

Updates `clap_complete` from 4.5.57 to 4.5.58
- [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.57...clap_complete-v4.5.58)

Updates `tracing-forest` from 0.1.6 to 0.2.0
- [Commits](https://github.com/QnnOkabayashi/tracing-forest/commits)

Updates `serde_derive` from 1.0.219 to 1.0.225
- [Release notes](https://github.com/serde-rs/serde/releases)
- [Commits](serde-rs/serde@v1.0.219...v1.0.225)

Updates `serde` from 1.0.219 to 1.0.225
- [Release notes](https://github.com/serde-rs/serde/releases)
- [Commits](serde-rs/serde@v1.0.219...v1.0.225)

Updates `bitflags` from 2.9.3 to 2.9.4
- [Release notes](https://github.com/bitflags/bitflags/releases)
- [Changelog](https://github.com/bitflags/bitflags/blob/main/CHANGELOG.md)
- [Commits](bitflags/bitflags@2.9.3...2.9.4)

Updates `tempfile` from 3.21.0 to 3.22.0
- [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md)
- [Commits](Stebalien/tempfile@v3.21.0...v3.22.0)

Updates `bytesize` from 2.0.1 to 2.1.0
- [Release notes](https://github.com/bytesize-rs/bytesize/releases)
- [Changelog](https://github.com/bytesize-rs/bytesize/blob/master/CHANGELOG.md)
- [Commits](bytesize-rs/bytesize@bytesize-v2.0.1...bytesize-v2.1.0)

Updates `rustix` from 1.0.8 to 1.1.2
- [Release notes](https://github.com/bytecodealliance/rustix/releases)
- [Changelog](https://github.com/bytecodealliance/rustix/blob/main/CHANGES.md)
- [Commits](bytecodealliance/rustix@v1.0.8...v1.1.2)

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

Updates `expectrl` from 0.7.1 to 0.8.0
- [Commits](https://github.com/zhiburt/expectrl/commits)

Updates `windows-sys` from 0.60.2 to 0.61.0
- [Release notes](https://github.com/microsoft/windows-rs/releases)
- [Commits](https://github.com/microsoft/windows-rs/commits/0.61.0)

Updates `windows` from 0.61.3 to 0.62.0
- [Release notes](https://github.com/microsoft/windows-rs/releases)
- [Commits](https://github.com/microsoft/windows-rs/commits/0.62.0)

Updates `insta` from 1.43.1 to 1.43.2
- [Release notes](https://github.com/mitsuhiko/insta/releases)
- [Changelog](https://github.com/mitsuhiko/insta/blob/master/CHANGELOG.md)
- [Commits](mitsuhiko/insta@1.43.1...1.43.2)

Updates `async-io` from 2.5.0 to 2.6.0
- [Release notes](https://github.com/smol-rs/async-io/releases)
- [Changelog](https://github.com/smol-rs/async-io/blob/master/CHANGELOG.md)
- [Commits](smol-rs/async-io@v2.5.0...v2.6.0)

Updates `fs-err` from 3.1.1 to 3.1.2
- [Changelog](https://github.com/andrewhickman/fs-err/blob/main/CHANGELOG.md)
- [Commits](https://github.com/andrewhickman/fs-err/commits/3.1.2)

Updates `serde_json` from 1.0.143 to 1.0.145
- [Release notes](https://github.com/serde-rs/json/releases)
- [Commits](serde-rs/json@v1.0.143...v1.0.145)

Updates `zip` from 4.6.0 to 5.1.1
- [Release notes](https://github.com/zip-rs/zip2/releases)
- [Changelog](https://github.com/zip-rs/zip2/blob/master/CHANGELOG.md)
- [Commits](zip-rs/zip2@v4.6.0...v5.1.1)

Updates `aws-lc-rs` from 1.13.3 to 1.14.0
- [Release notes](https://github.com/aws/aws-lc-rs/releases)
- [Commits](aws/aws-lc-rs@v1.13.3...v1.14.0)

Updates `aws-lc-sys` from 0.30.0 to 0.31.0
- [Release notes](https://github.com/aws/aws-lc-rs/releases)
- [Commits](aws/aws-lc-rs@aws-lc-sys/v0.30.0...aws-lc-sys/v0.31.0)

Updates `bindgen` from 0.69.5 to 0.72.1
- [Release notes](https://github.com/rust-lang/rust-bindgen/releases)
- [Changelog](https://github.com/rust-lang/rust-bindgen/blob/v0.72.1/CHANGELOG.md)
- [Commits](rust-lang/rust-bindgen@v0.69.5...v0.72.1)

Updates `cc` from 1.2.35 to 1.2.37
- [Release notes](https://github.com/rust-lang/cc-rs/releases)
- [Changelog](https://github.com/rust-lang/cc-rs/blob/main/CHANGELOG.md)
- [Commits](rust-lang/cc-rs@cc-v1.2.35...cc-v1.2.37)

Updates `clap_builder` from 4.5.46 to 4.5.47
- [Release notes](https://github.com/clap-rs/clap/releases)
- [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md)
- [Commits](clap-rs/clap@v4.5.46...v4.5.47)

Updates `clap_derive` from 4.5.45 to 4.5.47
- [Release notes](https://github.com/clap-rs/clap/releases)
- [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md)
- [Commits](clap-rs/clap@v4.5.45...v4.5.47)

Updates `errno` from 0.3.13 to 0.3.14
- [Release notes](https://github.com/lambda-fairy/rust-errno/releases)
- [Changelog](https://github.com/lambda-fairy/rust-errno/blob/main/CHANGELOG.md)
- [Commits](https://github.com/lambda-fairy/rust-errno/commits)

Updates `find-msvc-tools` from 0.1.0 to 0.1.1
- [Release notes](https://github.com/rust-lang/cc-rs/releases)
- [Changelog](https://github.com/rust-lang/cc-rs/blob/main/CHANGELOG.md)
- [Commits](rust-lang/cc-rs@0.1.0...find-msvc-tools-v0.1.1)

Updates `hyper-util` from 0.1.16 to 0.1.17
- [Release notes](https://github.com/hyperium/hyper-util/releases)
- [Changelog](https://github.com/hyperium/hyper-util/blob/master/CHANGELOG.md)
- [Commits](hyperium/hyper-util@v0.1.16...v0.1.17)

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

Updates `libredox` from 0.1.9 to 0.1.10

Updates `linux-raw-sys` from 0.4.15 to 0.11.0
- [Commits](sunfishcode/linux-raw-sys@v0.4.15...v0.11.0)

Updates `log` from 0.4.27 to 0.4.28
- [Release notes](https://github.com/rust-lang/log/releases)
- [Changelog](https://github.com/rust-lang/log/blob/master/CHANGELOG.md)
- [Commits](rust-lang/log@0.4.27...0.4.28)

Updates `polling` from 3.10.0 to 3.11.0
- [Release notes](https://github.com/smol-rs/polling/releases)
- [Changelog](https://github.com/smol-rs/polling/blob/master/CHANGELOG.md)
- [Commits](smol-rs/polling@v3.10.0...v3.11.0)

Updates `ptyprocess` from 0.4.1 to 0.5.0
- [Commits](https://github.com/zhiburt/ptyprocess/commits)

Updates `rustc-hash` from 1.1.0 to 2.1.1
- [Changelog](https://github.com/rust-lang/rustc-hash/blob/master/CHANGELOG.md)
- [Commits](https://github.com/rust-lang/rustc-hash/commits/v2.1.1)

Updates `rustls-webpki` from 0.103.4 to 0.103.6
- [Release notes](https://github.com/rustls/webpki/releases)
- [Commits](rustls/webpki@v/0.103.4...v/0.103.6)

Updates `schannel` from 0.1.27 to 0.1.28
- [Release notes](https://github.com/steffengy/schannel-rs/releases)
- [Commits](steffengy/schannel-rs@v0.1.27...v0.1.28)

Updates `security-framework-sys` from 2.14.0 to 2.15.0
- [Commits](https://github.com/kornelski/rust-security-framework/commits)

Updates `serde_spanned` from 1.0.0 to 1.0.1
- [Commits](toml-rs/toml@serde_spanned-v1.0.0...serde_spanned-v1.0.1)

Updates `tokio-rustls` from 0.26.2 to 0.26.3
- [Release notes](https://github.com/rustls/tokio-rustls/releases)
- [Commits](rustls/tokio-rustls@v/0.26.2...v/0.26.3)

Updates `toml` from 0.9.5 to 0.9.6
- [Commits](toml-rs/toml@toml-v0.9.5...toml-v0.9.6)

Updates `toml_datetime` from 0.7.0 to 0.7.1
- [Commits](toml-rs/toml@toml_datetime-v0.7.0...toml_datetime-v0.7.1)

Updates `unicode-ident` from 1.0.18 to 1.0.19
- [Release notes](https://github.com/dtolnay/unicode-ident/releases)
- [Commits](dtolnay/unicode-ident@1.0.18...1.0.19)

Updates `winapi-util` from 0.1.10 to 0.1.11
- [Commits](BurntSushi/winapi-util@0.1.10...0.1.11)

Updates `wit-bindgen` from 0.45.0 to 0.45.1
- [Release notes](https://github.com/bytecodealliance/wit-bindgen/releases)
- [Commits](bytecodealliance/wit-bindgen@v0.45.0...v0.45.1)

Updates `zerocopy` from 0.8.26 to 0.8.27
- [Release notes](https://github.com/google/zerocopy/releases)
- [Changelog](https://github.com/google/zerocopy/blob/main/CHANGELOG.md)
- [Commits](google/zerocopy@v0.8.26...v0.8.27)

Updates `zerocopy-derive` from 0.8.26 to 0.8.27
- [Release notes](https://github.com/google/zerocopy/releases)
- [Changelog](https://github.com/google/zerocopy/blob/main/CHANGELOG.md)
- [Commits](google/zerocopy@v0.8.26...v0.8.27)

---
updated-dependencies:
- dependency-name: clap
  dependency-version: 4.5.47
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo
- dependency-name: clap_complete
  dependency-version: 4.5.58
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo
- dependency-name: tracing-forest
  dependency-version: 0.2.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: cargo
- dependency-name: serde_derive
  dependency-version: 1.0.225
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo
- dependency-name: serde
  dependency-version: 1.0.225
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo
- dependency-name: bitflags
  dependency-version: 2.9.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo
- dependency-name: tempfile
  dependency-version: 3.22.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: cargo
- dependency-name: bytesize
  dependency-version: 2.1.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: cargo
- dependency-name: rustix
  dependency-version: 1.1.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: cargo
- dependency-name: trybuild
  dependency-version: 1.0.111
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo
- dependency-name: expectrl
  dependency-version: 0.8.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: cargo
- dependency-name: windows-sys
  dependency-version: 0.61.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: cargo
- dependency-name: windows
  dependency-version: 0.62.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: cargo
- dependency-name: insta
  dependency-version: 1.43.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo
- dependency-name: async-io
  dependency-version: 2.6.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: cargo
- dependency-name: fs-err
  dependency-version: 3.1.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo
- dependency-name: serde_json
  dependency-version: 1.0.145
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo
- dependency-name: zip
  dependency-version: 5.1.1
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: cargo
- dependency-name: aws-lc-rs
  dependency-version: 1.14.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: cargo
- dependency-name: aws-lc-sys
  dependency-version: 0.31.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: cargo
- dependency-name: bindgen
  dependency-version: 0.72.1
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: cargo
- dependency-name: cc
  dependency-version: 1.2.37
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: cargo
- dependency-name: clap_builder
  dependency-version: 4.5.47
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: cargo
- dependency-name: clap_derive
  dependency-version: 4.5.47
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: cargo
- dependency-name: errno
  dependency-version: 0.3.14
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: cargo
- dependency-name: find-msvc-tools
  dependency-version: 0.1.1
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: cargo
- dependency-name: hyper-util
  dependency-version: 0.1.17
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: cargo
- dependency-name: indexmap
  dependency-version: 2.11.3
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: cargo
- dependency-name: libredox
  dependency-version: 0.1.10
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: cargo
- dependency-name: linux-raw-sys
  dependency-version: 0.11.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: cargo
- dependency-name: log
  dependency-version: 0.4.28
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: cargo
- dependency-name: polling
  dependency-version: 3.11.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: cargo
- dependency-name: ptyprocess
  dependency-version: 0.5.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: cargo
- dependency-name: rustc-hash
  dependency-version: 2.1.1
  dependency-type: indirect
  update-type: version-update:semver-major
  dependency-group: cargo
- dependency-name: rustls-webpki
  dependency-version: 0.103.6
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: cargo
- dependency-name: schannel
  dependency-version: 0.1.28
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: cargo
- dependency-name: security-framework-sys
  dependency-version: 2.15.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: cargo
- dependency-name: serde_spanned
  dependency-version: 1.0.1
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: cargo
- dependency-name: tokio-rustls
  dependency-version: 0.26.3
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: cargo
- dependency-name: toml
  dependency-version: 0.9.6
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: cargo
- dependency-name: toml_datetime
  dependency-version: 0.7.1
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: cargo
- dependency-name: unicode-ident
  dependency-version: 1.0.19
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: cargo
- dependency-name: winapi-util
  dependency-version: 0.1.11
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: cargo
- dependency-name: wit-bindgen
  dependency-version: 0.45.1
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: cargo
- dependency-name: zerocopy
  dependency-version: 0.8.27
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: cargo
- dependency-name: zerocopy-derive
  dependency-version: 0.8.27
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: cargo
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file rust Pull requests that update rust code labels Sep 18, 2025
@EliahKagan EliahKagan marked this pull request as draft September 18, 2025 11:34
@EliahKagan EliahKagan requested a review from Copilot September 19, 2025 02:42
Copy link

@Copilot Copilot AI left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull Request Overview

This is a dependency bump PR that updates 46 Rust packages across the cargo workspace to their latest versions. The updates include various improvements like new features, performance enhancements, bug fixes, and API additions across multiple libraries.

Key changes include:

  • Major version update for zip from 4.6.0 to 5.1.1 with new compression methods and API changes
  • Minor version updates for core libraries like clap, serde, rustix, and windows-sys
  • Patch updates for numerous testing and utility dependencies

Reviewed Changes

Copilot reviewed 19 out of 20 changed files in this pull request and generated no comments.

Show a summary per file
File Description
tests/tools/Cargo.toml Updates tempfile to 3.22.0 for test utilities
tests/it/Cargo.toml Updates clap to 4.5.47 for integration tests
gix/Cargo.toml Updates insta to 1.43.2 for snapshot testing
gix-traverse/tests/Cargo.toml Updates insta to 1.43.2 for snapshot testing
gix-tempfile/Cargo.toml Updates tempfile to 3.22.0 for temporary file handling
gix-sec/Cargo.toml Updates windows-sys to 0.61.0 and tempfile to 3.22.0
gix-ref/tests/Cargo.toml Updates insta to 1.43.2 for snapshot testing
gix-prompt/Cargo.toml Updates rustix to 1.1.2 and expectrl to 0.8.0
gix-path/Cargo.toml Updates windows to 0.62.0 for path utilities
gix-odb/Cargo.toml Updates tempfile to 3.22.0 for object database tests
gix-lock/Cargo.toml Updates tempfile to 3.22.0 for file locking tests
gix-index/Cargo.toml Updates rustix to 1.1.2 for index operations
gix-fs/Cargo.toml Updates tempfile to 3.22.0 for filesystem utilities
gix-features/Cargo.toml Updates bytesize to 2.1.0 for feature configuration
gix-discover/Cargo.toml Updates tempfile to 3.22.0 for repository discovery
gix-diff/tests/Cargo.toml Updates insta to 1.43.2 for diff testing
gix-config/tests/Cargo.toml Updates bytesize to 2.1.0 for configuration tests
gix-archive/Cargo.toml Updates zip to 5.1.1 for archive functionality
gitoxide-core/Cargo.toml Updates multiple dependencies including bytesize, tempfile, async-io, fs-err, and serde_json

Tip: Customize your code reviews with copilot-instructions.md. Create the file or learn how to get started.

@EliahKagan
Copy link
Owner

@dependabot rebase

Copy link
Author

dependabot bot commented on behalf of github Sep 21, 2025

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

@dependabot dependabot bot closed this Sep 21, 2025
@dependabot dependabot bot deleted the dependabot/cargo/cargo-1cce62538c branch September 21, 2025 15:45
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.

1 participant