Skip to content

Bump the cargo group across 1 directory with 50 updates #44

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 28, 2025

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

Package From To
clap 4.5.37 4.5.39
clap_complete 4.5.48 4.5.51
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.14
trybuild 1.0.104 1.0.105
reqwest 0.12.15 0.12.17
signal-hook 0.3.17 0.3.18
async-io 2.4.0 2.4.1
rusqlite 0.35.0 0.36.0
sysinfo 0.34.2 0.35.1
zip 3.0.0 4.0.0
crc 3.2.1 3.3.0
anstyle-wincon 3.0.7 3.0.8
aws-lc-rs 1.13.0 1.13.1
backtrace 0.3.74 0.3.75
cc 1.2.20 1.2.24
errno 0.3.11 0.3.12
h2 0.4.9 0.4.10
hyper-rustls 0.27.5 0.27.6
idna_adapter 1.2.0 1.2.1
libloading 0.8.6 0.8.8
polling 3.7.4 3.8.0
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
rustversion 1.0.20 1.0.21
socket2 0.5.9 0.5.10
tokio 1.44.2 1.45.1
webpki-roots 0.26.10 0.26.11

Updates clap from 4.5.37 to 4.5.39

Release notes

Sourced from clap's releases.

v4.5.39

[4.5.39] - 2025-05-27

Fixes

  • (help) Show short flag aliases before long
  • (help) Merge the short and long flag alias lists

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.39] - 2025-05-27

Fixes

  • (help) Show short flag aliases before long
  • (help) Merge the short and long flag alias lists

[4.5.38] - 2025-05-11

Fixes

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

Updates clap_complete from 4.5.48 to 4.5.51

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

Changelog

Sourced from jiff's changelog.

0.2.14 (2025-05-20)

This release includes a smattering of bug fixes, and hopefully a small improvement to the time it takes to compile Jiff. Also, in this release, when TZ is set to a non-empty but invalid value, Jiff will always fall back to Etc/Unknown when using TimeZone::system(). This differs from previous behavior where Jiff would, in this case, attempt to read the system's default time zone. This change brings Jiff into consistency with existing Unix tooling like date, and is also arguably a better failure mode. That is, when TZ is set but invalid, we shouldn't silently fall back to the default system time zone, but instead do something that indicates something has potentially gone wrong.

Enhancements:

  • #364: Jiff now falls back to Etc/Unknown for invalid TZ values.
  • #379: Improve compilation times.

Bug fixes:

  • #365: Fixes a compile error in Jiff when only the tzdb-concatenated feature was enabled.
  • #366: Fixes slow initial Zoned::now() in environments where /usr/share/zoneinfo is on a very slow file system (like CI environments).
  • #376: Avoids searching for a tzdb at /usr/share/zoneinfo on Windows.

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
  • 8105228 0.2.14
  • 39b9903 changelog: 0.2.14
  • c0cfb23 test: add another scratch test for printing some interesting spans
  • ca06977 error: try to reduce amount of codegen by forcefully unlining error constructors
  • 08abead tz: fallback to Etc/Unknown when TZ is set to an invalid value
  • e22013e tz: don't search for tzdb at /usr/share/zoneinfo
  • c5c2320 ci: improve tzdb init times and tests
  • 0f9fdf8 tz: improve performance of initial Zoned::now()
  • 4e4939d jiff-icu: bump ICU4X to 2.0.0
  • e729efa jiff-icu: upgrade to ICU4X 2.0.0
  • Additional commits viewable in compare view

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 reqwest from 0.12.15 to 0.12.17

Release notes

Sourced from reqwest's releases.

v0.12.17

What's Changed

v0.12.16

Highlights

  • Add ClientBuilder::http3_congestion_bbr() to enable BBR congestion control.
  • Add ClientBuilder::http3_send_grease() to configure whether to send use QUIC grease.
  • Add ClientBuilder::http3_max_field_section_size() to configure the maximum response headers.
  • Add ClientBuilder::tcp_keepalive_interval() to configure TCP probe interval.
  • Add ClientBuilder::tcp_keepalive_retries() to configure TCP probe count.
  • Add Proxy::headers() to add extra headers that should be sent to a proxy.
  • Fix redirect::Policy::limit() which had an off-by-1 error, allowing 1 more redirect than specified.
  • Fix HTTP/3 to support streaming request bodies.
  • (wasm) Fix null bodies when calling Response::bytes_stream().

What's Changed

New Contributors

... (truncated)

Changelog

Sourced from reqwest's changelog.

v0.12.17

  • Fix compilation on macOS.

v0.12.16

  • Add ClientBuilder::http3_congestion_bbr() to enable BBR congestion control.
  • Add ClientBuilder::http3_send_grease() to configure whether to send use QUIC grease.
  • Add ClientBuilder::http3_max_field_section_size() to configure the maximum response headers.
  • Add ClientBuilder::tcp_keepalive_interval() to configure TCP probe interval.
  • Add ClientBuilder::tcp_keepalive_retries() to configure TCP probe count.
  • Add Proxy::headers() to add extra headers that should be sent to a proxy.
  • Fix redirect::Policy::limit() which had an off-by-1 error, allowing 1 more redirect than specified.
  • Fix HTTP/3 to support streaming request bodies.
  • (wasm) Fix null bodies when calling Response::bytes_stream().
Commits
  • 56ed35b v0.12.17
  • f0bf46b build: Fix compilation issues on macOS (#2696)
  • 99259cb v0.12.16
  • 57670ac feat: add customizable headers for reqwest::Proxy (#2600)
  • d9cf60e refactor: Using FollowRedirect from tower-http to handle the redirect l...
  • 75f62f2 fix: ensure H3ResponseFuture is sync (#2685)
  • 0e1d188 chore: replace rustls-pemfile with rustls-pki-types (#2541)
  • 705b613 refactor: remove futures-util unless using stream/multipart/compression...
  • 7b80718 Upgrade webpki-roots to 1 (#2688)
  • 152a560 refactor: use hyper-util Tunnel (#2684)
  • Additional commits viewable 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 async-io from 2.4.0 to 2.4.1

Release notes

Sourced from async-io's releases.

v2.4.1

  • Update to rustix version 1.0.7. (#221)
Changelog

Sourced from async-io's changelog.

Version 2.4.1

  • Update to rustix version 1.0.7. (#221)
Commits

Updates rusqlite from 0.35.0 to 0.36.0

Release notes

Sourced from rusqlite's releases.

0.36.0

What's Changed

  • Introduce Name trait to support both &str and &CStr as name #1659
  • Use doc_auto_cfg #1683
  • Feature loadable_extension is incompatible with some other features #1686
  • Add missing wrappers for sqlite3_vtab_nochange and sqlite3_value_nochange #1688
  • Update bindings list #1689
  • Homogenize code related to hooks #1690
  • Try to increase code coverage #1610
  • Bump bundled SQLite version to 3.49.2 #1691
  • Add bindings to sqlite3_table_column_metadata #1692
  • Add bindings to sqlite3_vtab_distinct #1695
  • Fix clippy warning #1697
  • Add query_one #1699
  • Refactor one_column test method #1700

Full Changelog: rusqlite/rusqlite@v0.35.0...v0.36.0

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 zip from 3.0.0 to 4.0.0

Release notes

Sourced from zip's releases.

v4.0.0

🐛 Bug Fixes

  • Allow extraction of Zip64 where "Version needed to extract" is higher than "Version made by" (#356)

⚙️ Miscellaneous Tasks

  • Revert nt-time upgrade (would increase MSRV)
  • Revert constant_time_eq update (would increase MSRV)
  • Update fully-qualified names of liblzma imports
Changelog

Sourced from zip's changelog.

4.0.0 - 2025-05-21

🐛 Bug Fixes

  • Allow extraction of Zip64 where "Version needed to extract" is higher than "Version made by" (#356)

⚙️ Miscellaneous Tasks

  • Revert nt-time upgrade (would increase MSRV)
  • Revert constant_time_eq update (would increase MSRV)
  • Update fully-qualified names of liblzma imports
Commits
  • b87a248 chore: release v4.0.0 (#357)
  • 2514c4c fix: Allow extraction of Zip64 where "Version needed to extract" is higher th...
  • 4aadb85 docs: Update fuzzing section of README
  • 470394d chore: Revert nt-time upgrade (would increase MSRV)
  • e4ab083 test(ci): Remove redundant semver checks
  • 89fd4ff deps!: Use dep: to suppress implicit features that may change in the future
  • 7d7d265 chore: Revert constant_time_eq update (would increase MSRV)
  • 2d75b28 style: cargo fmt --all
  • 3a5094d deps: Replace lzma-rs with liblzma
  • b93fc34 chore: Update fully-qualified names of liblzma imports
  • Additional commits viewable in compare view

Updates crc from 3.2.1 to 3.3.0

Commits

Updates anstyle-wincon from 3.0.7 to 3.0.8

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

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

| Package | From | To |
| --- | --- | --- |
| [clap](https://github.com/clap-rs/clap) | `4.5.37` | `4.5.39` |
| [clap_complete](https://github.com/clap-rs/clap) | `4.5.48` | `4.5.51` |
| [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.14` |
| [trybuild](https://github.com/dtolnay/trybuild) | `1.0.104` | `1.0.105` |
| [reqwest](https://github.com/seanmonstar/reqwest) | `0.12.15` | `0.12.17` |
| [signal-hook](https://github.com/vorner/signal-hook) | `0.3.17` | `0.3.18` |
| [async-io](https://github.com/smol-rs/async-io) | `2.4.0` | `2.4.1` |
| [rusqlite](https://github.com/rusqlite/rusqlite) | `0.35.0` | `0.36.0` |
| [sysinfo](https://github.com/GuillaumeGomez/sysinfo) | `0.34.2` | `0.35.1` |
| [zip](https://github.com/zip-rs/zip2) | `3.0.0` | `4.0.0` |
| [crc](https://github.com/mrhooray/crc-rs) | `3.2.1` | `3.3.0` |
| [anstyle-wincon](https://github.com/rust-cli/anstyle) | `3.0.7` | `3.0.8` |
| [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.24` |
| [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-rustls](https://github.com/rustls/hyper-rustls) | `0.27.5` | `0.27.6` |
| [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.8` |
| [polling](https://github.com/smol-rs/polling) | `3.7.4` | `3.8.0` |
| [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` |
| [rustversion](https://github.com/dtolnay/rustversion) | `1.0.20` | `1.0.21` |
| [socket2](https://github.com/rust-lang/socket2) | `0.5.9` | `0.5.10` |
| [tokio](https://github.com/tokio-rs/tokio) | `1.44.2` | `1.45.1` |
| [webpki-roots](https://github.com/rustls/webpki-roots) | `0.26.10` | `0.26.11` |



Updates `clap` from 4.5.37 to 4.5.39
- [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.39)

Updates `clap_complete` from 4.5.48 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.48...clap_complete-v4.5.51)

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.14
- [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.14)

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 `reqwest` from 0.12.15 to 0.12.17
- [Release notes](https://github.com/seanmonstar/reqwest/releases)
- [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md)
- [Commits](seanmonstar/reqwest@v0.12.15...v0.12.17)

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 `async-io` from 2.4.0 to 2.4.1
- [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.4.0...v2.4.1)

Updates `rusqlite` from 0.35.0 to 0.36.0
- [Release notes](https://github.com/rusqlite/rusqlite/releases)
- [Changelog](https://github.com/rusqlite/rusqlite/blob/master/Changelog.md)
- [Commits](rusqlite/rusqlite@v0.35.0...v0.36.0)

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 `zip` from 3.0.0 to 4.0.0
- [Release notes](https://github.com/zip-rs/zip2/releases)
- [Changelog](https://github.com/zip-rs/zip2/blob/master/CHANGELOG.md)
- [Commits](zip-rs/zip2@v3.0.0...v4.0.0)

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 `anstyle-wincon` from 3.0.7 to 3.0.8
- [Commits](rust-cli/anstyle@anstyle-wincon-v3.0.7...anstyle-wincon-v3.0.8)

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.24
- [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.24)

Updates `clap_builder` from 4.5.37 to 4.5.39
- [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.39)

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-rustls` from 0.27.5 to 0.27.6
- [Release notes](https://github.com/rustls/hyper-rustls/releases)
- [Commits](rustls/hyper-rustls@v/0.27.5...v/0.27.6)

Updates `hyper-util` from 0.1.11 to 0.1.13
- [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.13)

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.14
- [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.14)

Updates `libloading` from 0.8.6 to 0.8.8
- [Commits](https://github.com/nagisa/rust_libloading/commits)

Updates `libsqlite3-sys` from 0.33.0 to 0.34.0
- [Release notes](https://github.com/rusqlite/rusqlite/releases)
- [Changelog](https://github.com/rusqlite/rusqlite/blob/master/Changelog.md)
- [Commits](rusqlite/rusqlite@v0.33.0...v0.34.0)

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 `polling` from 3.7.4 to 3.8.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.7.4...v3.8.0)

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 `rustversion` from 1.0.20 to 1.0.21
- [Release notes](https://github.com/dtolnay/rustversion/releases)
- [Commits](dtolnay/rustversion@1.0.20...1.0.21)

Updates `socket2` from 0.5.9 to 0.5.10
- [Release notes](https://github.com/rust-lang/socket2/releases)
- [Changelog](https://github.com/rust-lang/socket2/blob/master/CHANGELOG.md)
- [Commits](https://github.com/rust-lang/socket2/commits)

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.1
- [Release notes](https://github.com/tokio-rs/tokio/releases)
- [Commits](tokio-rs/tokio@tokio-1.44.2...tokio-1.45.1)

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.39
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo
- dependency-name: clap_complete
  dependency-version: 4.5.51
  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.14
  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: reqwest
  dependency-version: 0.12.17
  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: async-io
  dependency-version: 2.4.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo
- dependency-name: rusqlite
  dependency-version: 0.36.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  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: zip
  dependency-version: 4.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  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: anstyle-wincon
  dependency-version: 3.0.8
  dependency-type: indirect
  update-type: version-update:semver-patch
  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.24
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: cargo
- dependency-name: clap_builder
  dependency-version: 4.5.39
  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-rustls
  dependency-version: 0.27.6
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: cargo
- dependency-name: hyper-util
  dependency-version: 0.1.13
  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.14
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: cargo
- dependency-name: libloading
  dependency-version: 0.8.8
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: cargo
- dependency-name: libsqlite3-sys
  dependency-version: 0.34.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  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: polling
  dependency-version: 3.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: rustversion
  dependency-version: 1.0.21
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: cargo
- dependency-name: socket2
  dependency-version: 0.5.10
  dependency-type: indirect
  update-type: version-update:semver-patch
  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.1
  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 added dependencies Pull requests that update a dependency file rust Pull requests that update rust code labels May 28, 2025
@EliahKagan EliahKagan marked this pull request as draft May 28, 2025 14: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 30, 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 30, 2025

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

@dependabot dependabot bot closed this May 30, 2025
@dependabot dependabot bot deleted the dependabot/cargo/cargo-e83010ed7b branch May 30, 2025 12:52
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