Skip to content

Bump the cargo group across 1 directory with 40 updates #39

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

Closed
wants to merge 3 commits into from

Conversation

dependabot[bot]
Copy link

@dependabot dependabot bot commented on behalf of github May 19, 2025

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

Package From To
clap 4.5.37 4.5.38
clap_complete 4.5.48 4.5.50
winnow 0.7.7 0.7.10
criterion 0.5.1 0.6.0
bitflags 2.9.0 2.9.1
tempfile 3.19.1 3.20.0
jiff 0.2.12 0.2.13
trybuild 1.0.104 1.0.105
signal-hook 0.3.17 0.3.18
sysinfo 0.34.2 0.35.1
crc 3.2.1 3.3.0
aws-lc-rs 1.13.0 1.13.1
backtrace 0.3.74 0.3.75
cc 1.2.20 1.2.23
errno 0.3.11 0.3.12
h2 0.4.9 0.4.10
hyper-util 0.1.11 0.1.12
idna_adapter 1.2.0 1.2.1
libloading 0.8.6 0.8.7
quinn 0.11.7 0.11.8
redox_syscall 0.5.11 0.5.12
rustls 0.23.26 0.23.27
rustls-pki-types 1.11.0 1.12.0
tokio 1.44.2 1.45.0
webpki-roots 0.26.10 0.26.11

Updates clap from 4.5.37 to 4.5.38

Release notes

Sourced from clap's releases.

v4.5.38

[4.5.38] - 2025-05-11

Fixes

  • (help) When showing aliases, include leading -- or -
Changelog

Sourced from clap's changelog.

[4.5.38] - 2025-05-11

Fixes

  • (help) When showing aliases, include leading -- or -
Commits
  • 2920fb0 chore: Release
  • 8902627 docs: Update changelog
  • 79d696f Merge pull request #5813 from epage/ignore
  • 479df35 fix(parser): Fill in defaults on ignored error
  • a1d69ca refactor(parser): Split up parsing from post-processing
  • 6827841 test(parser): Show bad ignore_errors defaulting case
  • 76d0049 test(parser): Verify defaulting on errors
  • 3f5c05c test(parser): Ensure we are actually testing ignore_errors
  • ba4745d chore(ci): Fix use of permissions
  • 22944b4 chore(ci): Use matrix for tracking the runner
  • Additional commits viewable in compare view

Updates clap_complete from 4.5.48 to 4.5.50

Commits
  • d8acd47 chore: Release
  • 7c2b8d9 docs: Update changelog
  • e69a2ea Merge pull request #5987 from mernen/fix-bash-comp-words-loop
  • e03cc2e Merge pull request #5988 from cordx56/fix-builder-custom-version-docs
  • 5ab2579 fix: Minor fix for builder docs about version
  • 2f66432 fix(complete): Only parse arguments before current
  • 4d9d210 test(complete): Illustrate current behavior in Bash
  • 6abe2f8 chore: Release
  • d5c7454 docs: Update changelog
  • 5b2e960 Merge pull request #5985 from mernen/bash-cur
  • Additional commits viewable in compare view

Updates winnow from 0.7.7 to 0.7.10

Changelog

Sourced from winnow's changelog.

[0.7.10] - 2025-05-06

Compatibility

  • Deprecated Stream::raw

Features

  • Added Stream::trace for better customization of trace parsers

Fixes

  • Remove initial from TokenSlice / LocatingSlices Debug impl
  • Stream::trace prints non-pretty output for &[T] and TokenSlice<T>

[0.7.9] - 2025-05-02

Features

  • Add ContextError::extend
  • Add Parser::context_with

[0.7.8] - 2025-05-01

Features

  • Add ContextError::push
  • Add Parser::map_err
Commits
  • a2eed30 chore: Release
  • af1225a docs: Update changelog
  • ec852b5 Merge pull request #661 from epage/trace
  • 5acc4e7 docs: Provide example of custom Debug for lexing
  • bc06ccb fix(stream): Don't use 'pretty' dump for Slice/TokenSlice
  • ad87453 fix(stream): Decouple BStr's trace from debug
  • 0184e67 fix(stream): Deprecated Stream::raw
  • 34480fd feat(stream): Give streams direct control over 'trace' output
  • d607525 fix(stream): Remove initial input from debug reprs
  • 07f43d3 test(stream): Use snapbox
  • Additional commits viewable in compare view

Updates criterion from 0.5.1 to 0.6.0

Changelog

Sourced from criterion's changelog.

[0.6.0] - 2025-05-17

Changed

  • MSRV bumped to 1.80
  • The real_blackbox feature no longer has any impact. Criterion always uses std::hint::black_box() now. Users of criterion::black_box() should switch to std::hint::black_box().
  • clap dependency unpinned.

Fixed

  • gnuplot version is now correctly detected when using certain Windows binaries/configurations that used to fail

Added

  • Async benchmarking with Tokio may be done via a tokio::runtime::Handle, not only a tokio::runtime::Runtime
Commits

Updates bitflags from 2.9.0 to 2.9.1

Release notes

Sourced from bitflags's releases.

2.9.1

What's Changed

Full Changelog: bitflags/bitflags@2.9.0...2.9.1

Changelog

Sourced from bitflags's changelog.

2.9.1

What's Changed

Full Changelog: bitflags/bitflags@2.9.0...2.9.1

Commits

Updates tempfile from 3.19.1 to 3.20.0

Changelog

Sourced from tempfile's changelog.

3.20.0

This release mostly unifies the behavior/capabilities around "keeping" temporary files:

  • Rename Builder::keep(bool) (via deprecation) to Builder::disable_cleanup(bool) to make it clear that behaves differently from NamedTempFile::keep(). The former disables automatic cleanup while the latter consumes the NamedTempFile object entirely and unsets the "temporary file" attribute (on Windows).
  • Rename TempDir::into_path (via deprecation) to TempDir::keep to mirror NamedTempFile::keep.
  • Add TempDir::disable_cleanup, NamedTempFile::disable_cleanup, and TempPath::disable_cleanup making it possible to disable automatic cleanup in-place after creating a temporary file/directory (equivalent to calling Builder::disable_cleanup before creating the file/directory).

Additionally, it adds a few spooled temporary file features:

  • Add SpooledTempFile::into_file for turning a SpooledTempFile into a regular unnamed temporary file, writing it to the backing storage ("rolling" it) if it was still stored in-memory.
  • Add spooled_tempfile_in and SpooledTempFile::new_in methods for creating spooled temporary files in a specific directory. This makes it possible to choose the backing device for your spooled temporary file which is rather important on Linux where the default temporary directory is likely backed by memory (defeating the entire point of having a spooled temporary file).

Finally, this release improves documentation, especially the top-level documentation explaining which temporary file type to use.

BREAKING for those with deny(warnings):

  • Builder::keep deprecated in favor of Builder::disable_cleanup.
  • TempDir::into_path is deprecated in favor of TempDir::keep.

BREAKING:

Commits
  • 99ffea6 chore: release v3.20.0 (#358)
  • bd2b267 feat: make it possible to disable cleanup in-place after creation (#355)
  • 3b30099 ci: really check docs for warnings (#357)
  • f701f52 ci: check docs (#356)
  • d34afe9 doc: improve SpooledData documentation
  • 6deb42e doc: make it easier to pick the correct tempfile constructor/type
  • e284782 feat: allow creating spooled temporary files in a specific directory (#353)
  • 07edc31 feat: implement SpooledTempFile::into_file (#352)
  • b122355 fix: add must_use attribute to TempDir::keep (#351)
  • cbd1e97 feat: rename TempDir::into_path to TempDir::keep (#349)
  • Additional commits viewable in compare view

Updates jiff from 0.2.12 to 0.2.13

Changelog

Sourced from jiff's changelog.

0.2.13 (2025-05-05)

This release fixes a bug in a corner case where TimeZone::following could sometimes omit the last time zone transition. This could only happen in time zones that once had daylight saving time, but ended it. This did not have an impact on other Jiff APIs that handle daylight saving time.

Bug fixes:

  • #362: Fix a bug where TimeZone::following could omit the last historical time zone transition.
Commits

Updates trybuild from 1.0.104 to 1.0.105

Release notes

Sourced from trybuild's releases.

1.0.105

Commits
  • a2eb852 Release 1.0.105
  • 0b1697a Recognize instrument-coverage in non-UTF8 rustc flags
  • a6fc23b Touch up PR 305
  • fb877e3 Merge pull request #305 from davidhewitt/instrument-coverage
  • 1b3e261 support passing -C instrument-coverage in RUSTFLAGS
  • See full diff in compare view

Updates signal-hook from 0.3.17 to 0.3.18

Changelog

Sourced from signal-hook's changelog.

signal-hook-1.3.18

  • Release the special-case removal of AIX for top-level signal-hook too (#169, #176).

signal-hook-async-std-0.3.0

  • Bump async-std to 0.2 (#172).

signal-hook-registry-1.4.5

  • Fix windows build (#174).

signal-hook-registry-1.4.4

  • Get rid of a warning.

signal-hook-registry-1.4.3

  • Remove special-case for AIX (#169).

signal-hook-mio-0.2.4

  • Support for mio 1.0

signal-hook-registry-1.4.2

  • NQX support (experimental/not guaranteed to work) (#158)
    • By disabling SA_RESTART on that platform, not supported there.
Commits

Updates sysinfo from 0.34.2 to 0.35.1

Changelog

Sourced from sysinfo's changelog.

0.35.1

  • Linux: Fix processor retrieval if some information is missing.
  • Windows: Increase range of windows crate up to < 0.63.

0.35.0

  • Update MSRV to 1.75.
  • Add System::open_files_limit.
  • Add Process::kill_and_wait and Process::kill_with_and_wait methods.
  • Process::open_files* methods return usize.
  • set_open_files_limit argument type is usize.
  • Code example was improved.
  • macOS: Fix M4 CPU frequency calculation.
  • Linux: Correctly handle when new CPUs are added.
  • Linux: Ignore autofs disks.
  • Linux (raspberry pi): Retrieve more thermal zones.
  • Android: Update documentation to mention that newer Android version don't allow to retrieve CPU information.
  • Windows: Improve Process::wait code.
  • Windows: Fix Groups::refresh.
Commits

Updates crc from 3.2.1 to 3.3.0

Commits

Updates aws-lc-rs from 1.13.0 to 1.13.1

Release notes

Sourced from aws-lc-rs's releases.

v1.13.1

What's Changed

Build Improvements

Issues Being Resolved

Other Merged PRs

New Contributors

Full Changelog: aws/aws-lc-rs@v1.13.0...v1.13.1

Commits

Updates aws-lc-sys from 0.28.2 to 0.29.0

Commits

Updates backtrace from 0.3.74 to 0.3.75

Release notes

Sourced from backtrace's releases.

0.3.75

What's Changed

New Contributors

Full Changelog: rust-lang/backtrace-rs@0.3.74...0.3.75

Commits
  • f8cc6ac Merge pull request #680 from ChrisDenton/0.3.75
  • 612c018 Cut backtrace 0.3.75
  • d7c5a45 Merge pull request #689 from workingjubilee/formalize-lru
  • c88b038 Revert "mem::swap, not mem::replace, in LRU backshifts"
  • b7fbd04 mem::swap, not mem::replace, in LRU backshifts
  • 3afccb1 raise backtrace MSRV to allow inline_const
  • 63b7d26 Use a custom container for Cache's cache
  • 154a0ea Update libloading dep, run cargo updaterust-lang/backtrace-rs#650
  • 4d7906brust-lang/backtrace-rs#682
  • a9c4658 Test Mac Catalyst in CI, and clean up unnecessary iOS env flags (rust-lang/ba...
  • Additional commits viewable in compare view

Updates cc from 1.2.20 to 1.2.23

Release notes

Sourced from cc's releases.

cc-v1.2.23

Other

  • support "vxworks" and "nto" OSes on get_base_archiver_variant (#1456)

cc-v1.2.22

Other

  • Add flags method to cc::Build for adding multiple flags (#1466)

cc-v1.2.21

Other

  • Fix wasm32-unknown-unknown by passing -c (#1424)
Changelog

Sourced from cc's changelog.

1.2.23 - 2025-05-16

Other

  • support "vxworks" and "nto" OSes on get_base_archiver_variant (#1456)

1.2.22 - 2025-05-09

Other

  • Add flags method to cc::Build for adding multiple flags (#1466)

1.2.21 - 2025-05-02

Other

  • Fix wasm32-unknown-unknown by passing -c (#1424)
Commits

Updates clap_builder from 4.5.37 to 4.5.38

Release notes

Sourced from clap_builder's releases.

v4.5.38

[4.5.38] - 2025-05-11

Fixes

  • (help) When showing aliases, include leading -- or -
Changelog

Sourced from clap_builder's changelog.

[4.5.38] - 2025-05-11

Fixes

  • (help) When showing aliases, include leading -- or -
Commits
  • 6b12a81 chore: Release
  • 8dd92a7 docs: Update changelog
  • 7f9aead Merge pull request #5996 from cenviity/push-kynozmuuzzuy
  • da2cc8d feat(help): Prefix argument short aliases in output with -
  • 487aec3 feat(help): Prefix argument aliases in output with --
  • 634ef20 Merge pull request #5992 from epage/docs
  • b8f5d53 docs: Improve starting point for builder reference
  • d8acd47 chore: Release
  • 7c2b8d9 docs: Update changelog
  • e69a2ea Merge pull request #5987 from mernen/fix-bash-comp-words-loop
  • Additional commits viewable in compare view

Updates errno from 0.3.11 to 0.3.12

Release notes

Sourced from errno's releases.

v0.3.12

  • Issue a better error message if the target is unsupported. #110
Changelog

Sourced from errno's changelog.

[0.3.12] - 2025-05-12

  • Issue a better error message if the target is unsupported. #110
Commits

Updates h2 from 0.4.9 to 0.4.10

Release notes

Sourced from h2's releases.

v0.4.10

What's Changed

Full Changelog: hyperium/h2@v0.4.9...v0.4.10

Changelog

Sourced from h2's changelog.

0.4.10 (May 5, 2025)

  • Fix is_end_stream() to return true only when ended cleanly, not when errored.
Commits
  • e4ed350 v0.4.10
  • adab70f Fix RecvStream::is_end_stream(): return true only when END_STREAM is received...
  • See full diff in compare view

Updates hyper-util from 0.1.11 to 0.1.12

Release notes

Sourced from hyper-util's releases.

v0.1.12

tl;dr

  • Add client::legacy::proxy::Tunnel connector that wraps another connector with HTTP tunneling.
  • Add client::legacy::proxy::{SocksV4, SocksV5} connectors that wraps another connector with SOCKS.
  • Add client::proxy::matcher::Matcher type that can use environment variables to match proxy rules.
  • Add server::graceful::Watcher type that can be sent to watch a connection in another task.
  • Add GracefulShutdown::count() method to get number of currently watched connections.
  • Fix missing must_use attributes on Connection futures.
  • Fix tracing span in GAI resolver that can cause panics.

What's Changed

New Contributors

Full Changelog: hyperium/hyper-util@v0.1.11...v0.1.12

Changelog

Sourced from hyper-util's changelog.

0.1.12 (2025-05-19)

  • Add client::legacy::proxy::Tunnel connector that wraps another connector with HTTP tunneling.
  • Add client::legacy::proxy::{SocksV4, SocksV5} connectors that wraps another connector with SOCKS.
  • Add client::proxy::matcher::Matcher type that can use environment variables to match proxy rules.
  • Add server::graceful::Watcher type that can be sent to watch a connection in another task.
  • Add GracefulShutdown::count() method to get number of currently watched connections.
  • Fix missing must_use attributes on Connection futures.
  • Fix tracing span in GAI resolver that can cause panics.
Commits
  • 8805922 v0.1.12
  • 7e34375 feat(client): add proxy::SocksV4 and proxy::SocksV5 connectors (#187)
  • 7e74248 feat(client): add windows system proxies for Matcher (#190)
  • acdda1a feat(client): add macOS system proxy support for Matcher (#189)
  • 6c29abb feat(client): add proxy::matcher utilities (#171)
  • e74ab78 feat(server): add method to get number of watching connection (#185)
  • 9ac0dfe docs(client): Include .pool_timer() in the Client builder example (#186)
  • a891979 feat(client): add proxy::Tunnel legacy util (#140)
  • c39da45 feat(server): implement Default for server auto connection Builder (#183)
  • 8610b18 feat(server): add graceful::Watcher type (#182)
  • Additional commits viewable in compare view

Updates idna_adapter from 1.2.0 to 1.2.1

Commits
  • f948802 Merge branch 'icu4x-trunk' and turn off default features of the deps
  • 4e654c1 Update to ICU4X 2.0 release
  • 8e5dbf8 Beta version of idna_adapter to use ICU4X beta
  • 76e6d7a Depend on ICU4X 2.0.0-beta1
  • b0b1dc6 Update to ICU4X trunk API
  • abe012e Use borrowed types from icu_normalizer
  • See full diff in compare view

Updates jiff-static from 0.2.12 to 0.2.13

Changelog

Sourced from jiff-static's changelog.

0.2.13 (2025-05-05)

This release fixes a bug in a corner case where TimeZone::following could sometimes omit the last time zone transition. This could only happen in time zones that once had daylight saving time, but ended it. This did not have an impact on other Jiff APIs that handle daylight saving time.

Bug fixes:

  • #362: Fix a bug where TimeZone::following could omit the last historical time zone transition.
Commits

Updates libloading from 0.8.6 to 0.8.7

Commits

@dependabot dependabot bot added dependencies Pull requests that update a dependency file rust Pull requests that update rust code labels May 19, 2025
@EliahKagan EliahKagan marked this pull request as draft May 21, 2025 09:25
@EliahKagan
Copy link
Owner

@dependabot rebase

Copy link
Author

dependabot bot commented on behalf of github May 21, 2025

Looks like this PR has been edited by someone other than Dependabot. That means Dependabot can't rebase it - sorry!

If you're happy for Dependabot to recreate it from scratch, overwriting any edits, you can request @dependabot recreate.

@EliahKagan
Copy link
Owner

@dependabot recreate

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

| Package | From | To |
| --- | --- | --- |
| [clap](https://github.com/clap-rs/clap) | `4.5.37` | `4.5.38` |
| [clap_complete](https://github.com/clap-rs/clap) | `4.5.48` | `4.5.50` |
| [winnow](https://github.com/winnow-rs/winnow) | `0.7.7` | `0.7.10` |
| [criterion](https://github.com/bheisler/criterion.rs) | `0.5.1` | `0.6.0` |
| [bitflags](https://github.com/bitflags/bitflags) | `2.9.0` | `2.9.1` |
| [tempfile](https://github.com/Stebalien/tempfile) | `3.19.1` | `3.20.0` |
| [jiff](https://github.com/BurntSushi/jiff) | `0.2.12` | `0.2.13` |
| [trybuild](https://github.com/dtolnay/trybuild) | `1.0.104` | `1.0.105` |
| [signal-hook](https://github.com/vorner/signal-hook) | `0.3.17` | `0.3.18` |
| [sysinfo](https://github.com/GuillaumeGomez/sysinfo) | `0.34.2` | `0.35.1` |
| [crc](https://github.com/mrhooray/crc-rs) | `3.2.1` | `3.3.0` |
| [aws-lc-rs](https://github.com/aws/aws-lc-rs) | `1.13.0` | `1.13.1` |
| [backtrace](https://github.com/rust-lang/backtrace-rs) | `0.3.74` | `0.3.75` |
| [cc](https://github.com/rust-lang/cc-rs) | `1.2.20` | `1.2.23` |
| [errno](https://github.com/lambda-fairy/rust-errno) | `0.3.11` | `0.3.12` |
| [h2](https://github.com/hyperium/h2) | `0.4.9` | `0.4.10` |
| [hyper-util](https://github.com/hyperium/hyper-util) | `0.1.11` | `0.1.12` |
| [idna_adapter](https://github.com/hsivonen/idna_adapter) | `1.2.0` | `1.2.1` |
| [libloading](https://github.com/nagisa/rust_libloading) | `0.8.6` | `0.8.7` |
| [quinn](https://github.com/quinn-rs/quinn) | `0.11.7` | `0.11.8` |
| redox_syscall | `0.5.11` | `0.5.12` |
| [rustls](https://github.com/rustls/rustls) | `0.23.26` | `0.23.27` |
| [rustls-pki-types](https://github.com/rustls/pki-types) | `1.11.0` | `1.12.0` |
| [tokio](https://github.com/tokio-rs/tokio) | `1.44.2` | `1.45.0` |
| [webpki-roots](https://github.com/rustls/webpki-roots) | `0.26.10` | `0.26.11` |



Updates `clap` from 4.5.37 to 4.5.38
- [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.37...clap_complete-v4.5.38)

Updates `clap_complete` from 4.5.48 to 4.5.50
- [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.48...clap_complete-v4.5.50)

Updates `winnow` from 0.7.7 to 0.7.10
- [Changelog](https://github.com/winnow-rs/winnow/blob/main/CHANGELOG.md)
- [Commits](winnow-rs/winnow@v0.7.7...v0.7.10)

Updates `criterion` from 0.5.1 to 0.6.0
- [Changelog](https://github.com/bheisler/criterion.rs/blob/master/CHANGELOG.md)
- [Commits](bheisler/criterion.rs@0.5.1...0.6.0)

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

Updates `tempfile` from 3.19.1 to 3.20.0
- [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md)
- [Commits](Stebalien/tempfile@v3.19.1...v3.20.0)

Updates `jiff` from 0.2.12 to 0.2.13
- [Release notes](https://github.com/BurntSushi/jiff/releases)
- [Changelog](https://github.com/BurntSushi/jiff/blob/master/CHANGELOG.md)
- [Commits](BurntSushi/jiff@jiff-static-0.2.12...jiff-static-0.2.13)

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

Updates `signal-hook` from 0.3.17 to 0.3.18
- [Changelog](https://github.com/vorner/signal-hook/blob/master/CHANGELOG.md)
- [Commits](vorner/signal-hook@v0.3.17...v0.3.18)

Updates `sysinfo` from 0.34.2 to 0.35.1
- [Changelog](https://github.com/GuillaumeGomez/sysinfo/blob/master/CHANGELOG.md)
- [Commits](https://github.com/GuillaumeGomez/sysinfo/commits/v0.35.1)

Updates `crc` from 3.2.1 to 3.3.0
- [Release notes](https://github.com/mrhooray/crc-rs/releases)
- [Commits](https://github.com/mrhooray/crc-rs/commits)

Updates `aws-lc-rs` from 1.13.0 to 1.13.1
- [Release notes](https://github.com/aws/aws-lc-rs/releases)
- [Commits](aws/aws-lc-rs@v1.13.0...v1.13.1)

Updates `aws-lc-sys` from 0.28.2 to 0.29.0
- [Release notes](https://github.com/aws/aws-lc-rs/releases)
- [Commits](aws/aws-lc-rs@aws-lc-sys/v0.28.2...aws-lc-sys/v0.29.0)

Updates `backtrace` from 0.3.74 to 0.3.75
- [Release notes](https://github.com/rust-lang/backtrace-rs/releases)
- [Commits](rust-lang/backtrace-rs@0.3.74...0.3.75)

Updates `cc` from 1.2.20 to 1.2.23
- [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.20...cc-v1.2.23)

Updates `clap_builder` from 4.5.37 to 4.5.38
- [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.37...v4.5.38)

Updates `errno` from 0.3.11 to 0.3.12
- [Release notes](https://github.com/lambda-fairy/rust-errno/releases)
- [Changelog](https://github.com/lambda-fairy/rust-errno/blob/main/CHANGELOG.md)
- [Commits](lambda-fairy/rust-errno@v0.3.11...v0.3.12)

Updates `h2` from 0.4.9 to 0.4.10
- [Release notes](https://github.com/hyperium/h2/releases)
- [Changelog](https://github.com/hyperium/h2/blob/master/CHANGELOG.md)
- [Commits](hyperium/h2@v0.4.9...v0.4.10)

Updates `hyper-util` from 0.1.11 to 0.1.12
- [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.11...v0.1.12)

Updates `idna_adapter` from 1.2.0 to 1.2.1
- [Commits](hsivonen/idna_adapter@v1.2.0...v1.2.1)

Updates `jiff-static` from 0.2.12 to 0.2.13
- [Release notes](https://github.com/BurntSushi/jiff/releases)
- [Changelog](https://github.com/BurntSushi/jiff/blob/master/CHANGELOG.md)
- [Commits](BurntSushi/jiff@jiff-static-0.2.12...jiff-static-0.2.13)

Updates `libloading` from 0.8.6 to 0.8.7
- [Commits](nagisa/rust_libloading@0.8.6...0.8.7)

Updates `litemap` from 0.7.5 to 0.8.0
- [Release notes](https://github.com/unicode-org/icu4x/releases)
- [Changelog](https://github.com/unicode-org/icu4x/blob/main/CHANGELOG.md)
- [Commits](https://github.com/unicode-org/icu4x/commits)

Updates `quinn` from 0.11.7 to 0.11.8
- [Release notes](https://github.com/quinn-rs/quinn/releases)
- [Commits](quinn-rs/quinn@quinn-0.11.7...quinn-0.11.8)

Updates `quinn-proto` from 0.11.11 to 0.11.12
- [Release notes](https://github.com/quinn-rs/quinn/releases)
- [Commits](quinn-rs/quinn@quinn-proto-0.11.11...quinn-proto-0.11.12)

Updates `redox_syscall` from 0.5.11 to 0.5.12

Updates `rustls` from 0.23.26 to 0.23.27
- [Release notes](https://github.com/rustls/rustls/releases)
- [Changelog](https://github.com/rustls/rustls/blob/main/CHANGELOG.md)
- [Commits](rustls/rustls@v/0.23.26...v/0.23.27)

Updates `rustls-pki-types` from 1.11.0 to 1.12.0
- [Release notes](https://github.com/rustls/pki-types/releases)
- [Commits](rustls/pki-types@v/1.11.0...v/1.12.0)

Updates `tinystr` from 0.7.6 to 0.8.1
- [Release notes](https://github.com/unicode-org/icu4x/releases)
- [Changelog](https://github.com/unicode-org/icu4x/blob/main/CHANGELOG.md)
- [Commits](https://github.com/unicode-org/icu4x/commits)

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

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

Updates `windows-core` from 0.57.0 to 0.61.0
- [Release notes](https://github.com/microsoft/windows-rs/releases)
- [Commits](microsoft/windows-rs@0.57.0...0.61.0)

Updates `windows-implement` from 0.57.0 to 0.60.0
- [Release notes](https://github.com/microsoft/windows-rs/releases)
- [Commits](microsoft/windows-rs@0.57.0...0.60.0)

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

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

Updates `writeable` from 0.5.5 to 0.6.1
- [Release notes](https://github.com/unicode-org/icu4x/releases)
- [Changelog](https://github.com/unicode-org/icu4x/blob/main/CHANGELOG.md)
- [Commits](https://github.com/unicode-org/icu4x/commits)

Updates `yoke` from 0.7.5 to 0.8.0
- [Release notes](https://github.com/unicode-org/icu4x/releases)
- [Changelog](https://github.com/unicode-org/icu4x/blob/main/CHANGELOG.md)
- [Commits](https://github.com/unicode-org/icu4x/commits)

Updates `yoke-derive` from 0.7.5 to 0.8.0
- [Release notes](https://github.com/unicode-org/icu4x/releases)
- [Changelog](https://github.com/unicode-org/icu4x/blob/main/CHANGELOG.md)
- [Commits](https://github.com/unicode-org/icu4x/commits)

Updates `zerovec` from 0.10.4 to 0.11.2
- [Release notes](https://github.com/unicode-org/icu4x/releases)
- [Changelog](https://github.com/unicode-org/icu4x/blob/main/CHANGELOG.md)
- [Commits](https://github.com/unicode-org/icu4x/commits)

Updates `zerovec-derive` from 0.10.3 to 0.11.1
- [Release notes](https://github.com/unicode-org/icu4x/releases)
- [Changelog](https://github.com/unicode-org/icu4x/blob/main/CHANGELOG.md)
- [Commits](https://github.com/unicode-org/icu4x/commits)

---
updated-dependencies:
- dependency-name: clap
  dependency-version: 4.5.38
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo
- dependency-name: clap_complete
  dependency-version: 4.5.50
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo
- dependency-name: winnow
  dependency-version: 0.7.10
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo
- dependency-name: criterion
  dependency-version: 0.6.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: cargo
- dependency-name: bitflags
  dependency-version: 2.9.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo
- dependency-name: tempfile
  dependency-version: 3.20.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: cargo
- dependency-name: jiff
  dependency-version: 0.2.13
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo
- dependency-name: trybuild
  dependency-version: 1.0.105
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo
- dependency-name: signal-hook
  dependency-version: 0.3.18
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo
- dependency-name: sysinfo
  dependency-version: 0.35.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: cargo
- dependency-name: crc
  dependency-version: 3.3.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: cargo
- dependency-name: aws-lc-rs
  dependency-version: 1.13.1
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: cargo
- dependency-name: aws-lc-sys
  dependency-version: 0.29.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: cargo
- dependency-name: backtrace
  dependency-version: 0.3.75
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: cargo
- dependency-name: cc
  dependency-version: 1.2.23
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: cargo
- dependency-name: clap_builder
  dependency-version: 4.5.38
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: cargo
- dependency-name: errno
  dependency-version: 0.3.12
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: cargo
- dependency-name: h2
  dependency-version: 0.4.10
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: cargo
- dependency-name: hyper-util
  dependency-version: 0.1.12
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: cargo
- dependency-name: idna_adapter
  dependency-version: 1.2.1
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: cargo
- dependency-name: jiff-static
  dependency-version: 0.2.13
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: cargo
- dependency-name: libloading
  dependency-version: 0.8.7
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: cargo
- dependency-name: litemap
  dependency-version: 0.8.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: cargo
- dependency-name: quinn
  dependency-version: 0.11.8
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: cargo
- dependency-name: quinn-proto
  dependency-version: 0.11.12
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: cargo
- dependency-name: redox_syscall
  dependency-version: 0.5.12
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: cargo
- dependency-name: rustls
  dependency-version: 0.23.27
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: cargo
- dependency-name: rustls-pki-types
  dependency-version: 1.12.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: cargo
- dependency-name: tinystr
  dependency-version: 0.8.1
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: cargo
- dependency-name: tokio
  dependency-version: 1.45.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: cargo
- dependency-name: webpki-roots
  dependency-version: 0.26.11
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: cargo
- dependency-name: windows-core
  dependency-version: 0.61.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: cargo
- dependency-name: windows-implement
  dependency-version: 0.60.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: cargo
- dependency-name: windows-interface
  dependency-version: 0.59.1
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: cargo
- dependency-name: windows-result
  dependency-version: 0.3.2
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: cargo
- dependency-name: writeable
  dependency-version: 0.6.1
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: cargo
- dependency-name: yoke
  dependency-version: 0.8.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: cargo
- dependency-name: yoke-derive
  dependency-version: 0.8.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: cargo
- dependency-name: zerovec
  dependency-version: 0.11.2
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: cargo
- dependency-name: zerovec-derive
  dependency-version: 0.11.1
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: cargo
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot force-pushed the dependabot/cargo/cargo-ddc40fedc9 branch from 49eab3d to 5895087 Compare May 21, 2025 10:07
`tempfile` version 3.20.0 introduces the clearer name
`TempDir::keep()` for `TempDir::into_path()`, deprecating the
latter.

This commit changes calls in `gix-config` tests to use `keep()`,
fixing new `clippy` errors.
`criterion` 0.6.0 deprecates `criterion::black_box()`, preferring
`std::hint::black_box()` (which `criterion::black_box()` now
consists of a call to).

This commit makes the recommended switch, in benches for
`gix-config` and `gix-object` where `criterion::black_box()` was
used, to `std::hint::black_box()`, fixing new clippy errors.

Fuzz tests have also been using `black_box()`, but they already
imported it from `std::hint`, and thus need no corresponding fix.
@EliahKagan
Copy link
Owner

@dependabot rebase

Copy link
Author

dependabot bot commented on behalf of github May 22, 2025

Looks like this PR has been edited by someone other than Dependabot. That means Dependabot can't rebase it - sorry!

If you're happy for Dependabot to recreate it from scratch, overwriting any edits, you can request @dependabot recreate.

@EliahKagan
Copy link
Owner

@dependabot recreate

Copy link
Author

dependabot bot commented on behalf of github May 22, 2025

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

@dependabot dependabot bot closed this May 22, 2025
@dependabot dependabot bot deleted the dependabot/cargo/cargo-ddc40fedc9 branch May 22, 2025 12:38
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