Skip to content

Conversation

@dependabot
Copy link
Contributor

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

Bumps the all-dependencies group with 37 updates in the / directory:

Package From To
tempfile 3.17.1 3.23.0
anyhow 1.0.97 1.0.100
async-trait 0.1.87 0.1.89
backtrace 0.3.74 0.3.75
bitflags 2.9.0 2.9.4
cfg-if 1.0.0 1.0.3
console 0.15.11 0.16.1
ctrlc 3.4.5 3.4.6
governor 0.10.0 0.10.1
http-body-util 0.1.2 0.1.3
hyper 1.6.0 1.7.0
hyper-util 0.1.10 0.1.17
is-terminal 0.4.15 0.4.16
log 0.4.26 0.4.28
memchr 2.7.4 2.7.5
num_cpus 1.16.0 1.17.0
proc-macro2 1.0.94 1.0.101
proptest 1.6.0 1.8.0
quote 1.0.39 1.0.40
rayon 1.10.0 1.11.0
regex 1.11.1 1.11.2
reqwest 0.12.12 0.12.15
rhai 1.21.0 1.23.4
semver 1.0.26 1.0.27
serde 1.0.218 1.0.226
serde_json 1.0.140 1.0.145
slab 0.4.9 0.4.11
sqlx 0.8.3 0.8.6
syn 2.0.99 2.0.106
time 0.3.39 0.3.44
tokio 1.44.2 1.47.1
tokio-util 0.7.15 0.7.16
tower-http 0.6.2 0.6.6
url 2.5.4 2.5.7
strum 0.27.1 0.27.2
phf 0.8.0 0.12.1
socket2 0.5.8 0.6.0

Updates tempfile from 3.17.1 to 3.23.0

Changelog

Sourced from tempfile's changelog.

3.23.0

  • Remove need for the "nightly" feature to compile with "wasip2".

3.22.0

  • Updated windows-sys requirement to allow version 0.61.x
  • Remove unstable-windows-keep-open-tempfile feature.

3.21.0

  • Updated windows-sys requirement to allow version 0.60.x

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.

3.19.1

  • Don't unlink temporary files immediately on Windows (fixes #339). Unfortunately, this seemed to corrupt the file object (possibly a Windows kernel bug) in rare cases and isn't strictly speaking necessary.

3.19.0

  • Remove direct dependency on cfg-if. It's still in the tree, but we didn't really need to use it in this crate.
  • Add an unstable feature (unstable-windows-keep-open-tempfile) to test a potential fix to #339.

3.18.0

  • Update rustix to 1.0.0.
  • Make NamedTempFile::persist_noclobber atomic on Apple operating systems. It's now atomic on MacOS, Windows, and Linux (depending on the OS version and filesystem used).
Commits
  • fe9f4a3 chore: release v3.23.0 (#381)
  • 006c3fd fix: use std::os::fd instead of std::os::wasi (#380)
  • b0e6309 doc: Update COPYRIGHT link (#377)
  • 2d6fc3f Fix formatting in Builder::disable_cleanup documentation (#375)
  • 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)
  • Additional commits viewable in compare view

Updates anyhow from 1.0.97 to 1.0.100

Release notes

Sourced from anyhow's releases.

1.0.100

  • Teach clippy to lint formatting arguments in bail!, ensure!, anyhow! (#426)

1.0.99

  • Allow build-script cleanup failure with NFSv3 output directory to be non-fatal (#420)

1.0.98

Commits
  • 18c2598 Release 1.0.100
  • f271988 Merge pull request #426 from dtolnay/clippyfmt
  • 52f2115 Mark macros with clippy::format_args
  • da5fd9d Raise minimum tested compiler to rust 1.76
  • 211e409 Opt in to generate-macro-expansion when building on docs.rs
  • b48fc02 Enforce trybuild >= 1.0.108
  • d5f59fb Update ui test suite to nightly-2025-09-07
  • 238415d Update ui test suite to nightly-2025-08-24
  • 3bab070 Update actions/checkout@v4 -> v5
  • 4249254 Order cap-lints flag in the same order as thiserror build script
  • Additional commits viewable in compare view

Updates async-trait from 0.1.87 to 0.1.89

Release notes

Sourced from async-trait's releases.

0.1.89

0.1.88

  • Fix lifetime bounding on generic parameters that have cfg (#289)
Commits
  • a7e91e9 Release 0.1.89
  • fbcfcac Merge pull request 293 from Veykril/lw/quote_spanned
  • fd93990 Improve use of spans in quote_spanned
  • a5093fe Add type-mismatch ui test
  • 6d12b44 Revert "Pin nightly toolchain used for miri job"
  • dd9e4ba Hide unused_variables warning in consider-restricting.rs ui test
  • b454fc8 Update ui test suite to nightly-2025-08-03
  • 9c880e8 Update ui test suite to nightly-2025-07-30
  • 7ca751d Ignore unused_parens warning in test
  • 2bccfeb Update ui test suite to nightly-2025-05-28
  • Additional commits viewable in compare view

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 bitflags from 2.9.0 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

2.9.3

What's Changed

New Contributors

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

2.9.2

What's Changed

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

2.9.1

What's Changed

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

Changelog

Sourced from bitflags's changelog.

2.9.4

What's Changed

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

2.9.3

What's Changed

New Contributors

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

2.9.2

What's Changed

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

2.9.1

What's Changed

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

Commits
  • de0ec28 Merge pull request #461 from KodrAus/cargo/2.9.4
  • c31df3c prepare for 2.9.4 release
  • 3a9cce2 Merge pull request #460 from bitflags/doc/cargo-features
  • 8eb1c7c add Cargo features to readme
  • f59ad49 Merge pull request #459 from KodrAus/cargo/2.9.3
  • 2c3a4f4 prepare for 2.9.3 release
  • 9e1cf3e Merge pull request #458 from nnethercote/streamline-generated-code
  • a3f1f78 Avoid calling InternalBitFlags::{bits,from_bits_retain}.
  • aead794 Avoid local variables in generated code.
  • 85b5e60 Merge pull request #456 from KodrAus/cargo/2.9.2
  • Additional commits viewable in compare view

Updates cfg-if from 1.0.0 to 1.0.3

Release notes

Sourced from cfg-if's releases.

v1.0.3

  • Revert "Remove @__identity rule."

v1.0.2

  • Remove @__identity rule.

v1.0.1

Other

  • Remove compiler-builtins from rustc-dep-of-std dependencies
  • Remove redundant configuration from Cargo.toml
  • More readable formatting and identifier names. (#39)
  • Add expanded example to readme (#38)
Changelog

Sourced from cfg-if's changelog.

1.0.3 - 2025-08-19

  • Revert "Remove @__identity rule."

1.0.2 - 2025-08-19

  • Remove @__identity rule.

1.0.1 - 2025-06-09

  • Remove compiler-builtins from rustc-dep-of-std dependencies
  • Remove redundant configuration from Cargo.toml
  • More readable formatting and identifier names. (#39)
  • Add expanded example to readme (#38)
Commits
  • 9c7bb0b chore: release v1.0.3 (#93)
  • 145894c Revert "Remove @__identity rule."
  • 9f747fe chore: release v1.0.2 (#88)
  • 97739b8 Fix some ugly and inconsistent formatting.
  • 4d7a585 Remove @__identity rule.
  • 527acbd Bump actions/checkout from 4 to 5
  • dbfd663 chore: release v1.0.1
  • 1cc10c7 Remove compiler-builtins from rustc-dep-of-std dependencies
  • 0314c2b ci: Fix the release job branch
  • ee3062f Remove redundant configuration from Cargo.toml
  • Additional commits viewable in compare view

Updates console from 0.15.11 to 0.16.1

Release notes

Sourced from console's releases.

0.16.1

What's Changed

0.16.0

What's Changed

The 0.15.12 release was yanked after it turned out to be semver-incompatible with existing usage by several of the most popular dependent crates, because it introduced a std feature -- and those crates used default-features = false but relied on the std-guarded features.

The 0.16.0 API should be semver-compatible with the 0.15.x API except for the need for the std feature.

Refer to the 0.15.12 release notes for more information.

0.15.12

What's Changed

Commits
  • f35b2e4 Bump version to 0.16.1
  • 900379f Upgrade windows-sys to 0.61
  • 174b8a4 Bump MSRV to 1.71 (for windows-sys 0.61)
  • 208928e Fix lint warning for elided lifetimes
  • a51fcea Fix QNX patch for libc::cfmakeraw
  • 90ea08d Tweak style for new WithAnsi code
  • 903df6d Add WithoutAnsi struct that implements Display
  • bda6a6e Add FUNDING metadata
  • 87ace80 Remove authors from Cargo metadata (per RFC 3052)
  • 6e30bfd Bump version to 0.16.0
  • Additional commits viewable in compare view

Updates ctrlc from 3.4.5 to 3.4.6

Release notes

Sourced from ctrlc's releases.

3.4.6

What's Changed

New Contributors

Full Changelog: Detegr/rust-ctrlc@3.4.5...3.4.6

Commits

Updates governor from 0.10.0 to 0.10.1

Commits
  • 6025d5f Merge pull request #278 from boinkor-net/release/governor/0.10.1
  • bf4d561 Update changelog for the release
  • 0de0726 Release 0.10.1 🎉🎉
  • c68a93c Merge pull request #276 from boinkor-net/no-more-crates-io-creds
  • 6c0087d Delete now-superseded release workflows
  • e76fe9a chore: Update release_to_crates_io.yml in governor
  • 48b5250 chore: Update release_pr_for_crates_io.yml in governor
  • f781a44 Merge pull request #277 from boinkor-net/push-tolxmqwvvvkz
  • 0510610 Fix feature combinations for the jitter mod
  • 80d08c4 Explicitly return an anonymous lifetime
  • Additional commits viewable in compare view

Updates http-body-util from 0.1.2 to 0.1.3

Release notes

Sourced from http-body-util's releases.

http-body-util v0.1.3

Features

  • Add Channel, a body type backed by an async channel.
  • Make Empty::new() to be const fn.

Thanks!

Commits

Updates hyper from 1.6.0 to 1.7.0

Release notes

Sourced from hyper's releases.

v1.7.0

Highlights

Features

  • client:
  • error: add Error::is_shutdown() (#3863) (b8affd8a, closes #2745)
  • server: add allow_multiple_spaces_in_request_line_delimiters http1 builder method (#3929) (9749184f)

Bug Fixes

  • server: improve caching accuracy of Date header (#3887) (436cadd1)

What's Changed

New Contributors

... (truncated)

Changelog

Sourced from hyper's changelog.

v1.7.0 (2025-08-18)

Bug Fixes

  • server: improve caching accuracy of Date header (#3887) (436cadd1)

Features

  • client:
  • error: add Error::is_shutdown() (#3863) (b8affd8a, closes #2745)
  • server: add allow_multiple_spaces_in_request_line_delimiters http1 builder method (#3929) (9749184f)
Commits
  • 400bdfd v1.7.0
  • 9749184 feat(server): add allow_multiple_spaces_in_request_line_delimiters http1 bu...
  • caa166c chore(dependencies): avoid implicit cargo feature of futures-util (#3931)
  • 8ad2595 test(common): add missing assertion in full_rewind test (#3926)
  • 24f0da8 chore(ci): update to cargo-check-external-types-0.3.0 (#3928)
  • 974289f docs(rt): improve rt module overview (#3920)
  • 283fd23 docs: improve ext module overview and Protocol docs (#3921)
  • b8affd8 feat(error): add Error::is_shutdown() (#3863)
  • c88df78 docs(SECURITY): update policy to use GSA drafts when reporting vulnerabilitie...
  • 436cadd fix(server): improve caching accuracy of Date header (#3887)
  • Additional commits viewable in compare view

Updates hyper-util from 0.1.10 to 0.1.17

Release notes

Sourced from hyper-util's releases.

v0.1.17

Highlights

  • Fix legacy::Client to allow absolute-form URIs when Connected::proxy(true) is passed and the scheme is https.

What's Changed

Full Changelog: hyperium/hyper-util@v0.1.16...v0.1.17

v0.1.16

Highlights

  • Add impl Clone for proxy::Tunnel service.
  • Fix proxy::Matcher to detect SOCKS4 schemes.
  • Fix legacy::Client pool idle checker to trigger less aggresively, saving CPU.

What's Changed

New Contributors

Full Changelog: hyperium/hyper-util@v0.1.15...v0.1.16

v0.1.15

tl;dr

  • Add header casing options to auto::Builder.
  • Fix proxy::Socksv5 to check for enough bytes before parsing ipv6 responses.
  • Fix including client-proxy in the full feature set.

What's Changed

... (truncated)

Changelog

Sourced from hyper-util's changelog.

0.1.17 (2025-09-15)

  • Fix legacy::Client to allow absolute-form URIs when Connected::proxy(true) is passed and the scheme is https.

0.1.16 (2025-07-22)

  • Add impl Clone for proxy::Tunnel service.
  • Fix proxy::Matcher to detect SOCKS4 schemes.
  • Fix legacy::Client pool idle checker to trigger less aggresively, saving CPU.

0.1.15 (2025-07-07)

  • Add header casing options to auto::Builder.
  • Fix proxy::Socksv5 to check for enough bytes before parsing ipv6 responses.
  • Fix including client-proxy in the full feature set.

0.1.14 (2025-06-04)

  • Fix HttpConnector to defer address family order to resolver sort order.
  • Fix proxy::Matcher to find HTTPS system proxies on Windows.

0.1.13 (2025-05-27)

  • Fix HttpConnector to always prefer IPv6 addresses first, if happy eyeballs is enabled.
  • Fix legacy::Client to return better errors if available on the connection.

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.

0.1.11 (2025-03-31)

  • Add tracing crate feature with support in TokioExecutor.
  • Add HttpConnector::interface() support for macOS and Solarish systems.
  • Add rt::WithHyperIo and rt::WithTokioIo combinators.
  • Add auto_date_header() for auto server builder.
  • Add max_local_error_reset_streams() for auto server builder.
  • Add ignore_invalid_headers() for auto server builder.
  • Add methods to determine if auto server is configured for HTTP/1 or HTTP/2.
  • Implement Connection for UnixStream and NamedPipeClient.
  • Fix HTTP/2 websocket requests sent through legacy::Client.
Commits
  • 3021828 v0.1.17
  • 9fb7cd5 fix(client): allow absolute-form if is_proxied is set even on HTTPS (

@dependabot dependabot bot added dependencies Pull requests that update a dependency file rust Pull requests that update Rust code labels Sep 23, 2025
@dependabot dependabot bot requested a review from a team as a code owner September 23, 2025 21:27
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Sep 23, 2025
@dependabot dependabot bot requested review from zhangsoledad and removed request for a team September 23, 2025 21:27
@dependabot dependabot bot added the rust Pull requests that update Rust code label Sep 23, 2025
…38 updates

Bumps the all-dependencies group with 37 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [tempfile](https://github.com/Stebalien/tempfile) | `3.17.1` | `3.23.0` |
| [anyhow](https://github.com/dtolnay/anyhow) | `1.0.97` | `1.0.100` |
| [async-trait](https://github.com/dtolnay/async-trait) | `0.1.87` | `0.1.89` |
| [backtrace](https://github.com/rust-lang/backtrace-rs) | `0.3.74` | `0.3.75` |
| [bitflags](https://github.com/bitflags/bitflags) | `2.9.0` | `2.9.4` |
| [cfg-if](https://github.com/rust-lang/cfg-if) | `1.0.0` | `1.0.3` |
| [console](https://github.com/console-rs/console) | `0.15.11` | `0.16.1` |
| [ctrlc](https://github.com/Detegr/rust-ctrlc) | `3.4.5` | `3.4.6` |
| [governor](https://github.com/boinkor-net/governor) | `0.10.0` | `0.10.1` |
| [http-body-util](https://github.com/hyperium/http-body) | `0.1.2` | `0.1.3` |
| [hyper](https://github.com/hyperium/hyper) | `1.6.0` | `1.7.0` |
| [hyper-util](https://github.com/hyperium/hyper-util) | `0.1.10` | `0.1.17` |
| [is-terminal](https://github.com/sunfishcode/is-terminal) | `0.4.15` | `0.4.16` |
| [log](https://github.com/rust-lang/log) | `0.4.26` | `0.4.28` |
| [memchr](https://github.com/BurntSushi/memchr) | `2.7.4` | `2.7.5` |
| [num_cpus](https://github.com/seanmonstar/num_cpus) | `1.16.0` | `1.17.0` |
| [proc-macro2](https://github.com/dtolnay/proc-macro2) | `1.0.94` | `1.0.101` |
| [proptest](https://github.com/proptest-rs/proptest) | `1.6.0` | `1.8.0` |
| [quote](https://github.com/dtolnay/quote) | `1.0.39` | `1.0.40` |
| [rayon](https://github.com/rayon-rs/rayon) | `1.10.0` | `1.11.0` |
| [regex](https://github.com/rust-lang/regex) | `1.11.1` | `1.11.2` |
| [reqwest](https://github.com/seanmonstar/reqwest) | `0.12.12` | `0.12.15` |
| [rhai](https://github.com/rhaiscript/rhai) | `1.21.0` | `1.23.4` |
| [semver](https://github.com/dtolnay/semver) | `1.0.26` | `1.0.27` |
| [serde](https://github.com/serde-rs/serde) | `1.0.218` | `1.0.226` |
| [serde_json](https://github.com/serde-rs/json) | `1.0.140` | `1.0.145` |
| [slab](https://github.com/tokio-rs/slab) | `0.4.9` | `0.4.11` |
| [sqlx](https://github.com/launchbadge/sqlx) | `0.8.3` | `0.8.6` |
| [syn](https://github.com/dtolnay/syn) | `2.0.99` | `2.0.106` |
| [time](https://github.com/time-rs/time) | `0.3.39` | `0.3.44` |
| [tokio](https://github.com/tokio-rs/tokio) | `1.44.2` | `1.47.1` |
| [tokio-util](https://github.com/tokio-rs/tokio) | `0.7.15` | `0.7.16` |
| [tower-http](https://github.com/tower-rs/tower-http) | `0.6.2` | `0.6.6` |
| [url](https://github.com/servo/rust-url) | `2.5.4` | `2.5.7` |
| [strum](https://github.com/Peternator7/strum) | `0.27.1` | `0.27.2` |
| [phf](https://github.com/rust-phf/rust-phf) | `0.8.0` | `0.12.1` |
| [socket2](https://github.com/rust-lang/socket2) | `0.5.8` | `0.6.0` |



Updates `tempfile` from 3.17.1 to 3.23.0
- [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md)
- [Commits](Stebalien/tempfile@v3.17.1...v3.23.0)

Updates `anyhow` from 1.0.97 to 1.0.100
- [Release notes](https://github.com/dtolnay/anyhow/releases)
- [Commits](dtolnay/anyhow@1.0.97...1.0.100)

Updates `async-trait` from 0.1.87 to 0.1.89
- [Release notes](https://github.com/dtolnay/async-trait/releases)
- [Commits](dtolnay/async-trait@0.1.87...0.1.89)

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 `bitflags` from 2.9.0 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.0...2.9.4)

Updates `cfg-if` from 1.0.0 to 1.0.3
- [Release notes](https://github.com/rust-lang/cfg-if/releases)
- [Changelog](https://github.com/rust-lang/cfg-if/blob/main/CHANGELOG.md)
- [Commits](rust-lang/cfg-if@1.0.0...v1.0.3)

Updates `console` from 0.15.11 to 0.16.1
- [Release notes](https://github.com/console-rs/console/releases)
- [Changelog](https://github.com/console-rs/console/blob/main/CHANGELOG.md)
- [Commits](console-rs/console@0.15.11...0.16.1)

Updates `ctrlc` from 3.4.5 to 3.4.6
- [Release notes](https://github.com/Detegr/rust-ctrlc/releases)
- [Commits](Detegr/rust-ctrlc@3.4.5...3.4.6)

Updates `governor` from 0.10.0 to 0.10.1
- [Release notes](https://github.com/boinkor-net/governor/releases)
- [Changelog](https://github.com/boinkor-net/governor/blob/master/release.toml)
- [Commits](boinkor-net/governor@v0.10.0...v0.10.1)

Updates `http-body-util` from 0.1.2 to 0.1.3
- [Release notes](https://github.com/hyperium/http-body/releases)
- [Commits](hyperium/http-body@http-body-util-v0.1.2...http-body-util-v0.1.3)

Updates `hyper` from 1.6.0 to 1.7.0
- [Release notes](https://github.com/hyperium/hyper/releases)
- [Changelog](https://github.com/hyperium/hyper/blob/master/CHANGELOG.md)
- [Commits](hyperium/hyper@v1.6.0...v1.7.0)

Updates `hyper-util` from 0.1.10 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.10...v0.1.17)

Updates `is-terminal` from 0.4.15 to 0.4.16
- [Commits](sunfishcode/is-terminal@v0.4.15...v0.4.16)

Updates `libc` from 0.2.170 to 0.2.176
- [Release notes](https://github.com/rust-lang/libc/releases)
- [Changelog](https://github.com/rust-lang/libc/blob/0.2.176/CHANGELOG.md)
- [Commits](rust-lang/libc@0.2.170...0.2.176)

Updates `log` from 0.4.26 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.26...0.4.28)

Updates `memchr` from 2.7.4 to 2.7.5
- [Commits](BurntSushi/memchr@2.7.4...2.7.5)

Updates `num_cpus` from 1.16.0 to 1.17.0
- [Release notes](https://github.com/seanmonstar/num_cpus/releases)
- [Changelog](https://github.com/seanmonstar/num_cpus/blob/master/CHANGELOG.md)
- [Commits](seanmonstar/num_cpus@v1.16.0...v1.17.0)

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

Updates `proptest` from 1.6.0 to 1.8.0
- [Release notes](https://github.com/proptest-rs/proptest/releases)
- [Changelog](https://github.com/proptest-rs/proptest/blob/main/CHANGELOG.md)
- [Commits](proptest-rs/proptest@v1.6.0...v1.8.0)

Updates `quote` from 1.0.39 to 1.0.40
- [Release notes](https://github.com/dtolnay/quote/releases)
- [Commits](dtolnay/quote@1.0.39...1.0.40)

Updates `rayon` from 1.10.0 to 1.11.0
- [Changelog](https://github.com/rayon-rs/rayon/blob/main/RELEASES.md)
- [Commits](rayon-rs/rayon@rayon-core-v1.10.0...rayon-core-v1.11.0)

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

Updates `reqwest` from 0.12.12 to 0.12.15
- [Release notes](https://github.com/seanmonstar/reqwest/releases)
- [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md)
- [Commits](seanmonstar/reqwest@v0.12.12...v0.12.15)

Updates `rhai` from 1.21.0 to 1.23.4
- [Release notes](https://github.com/rhaiscript/rhai/releases)
- [Changelog](https://github.com/rhaiscript/rhai/blob/main/CHANGELOG.md)
- [Commits](https://github.com/rhaiscript/rhai/commits)

Updates `semver` from 1.0.26 to 1.0.27
- [Release notes](https://github.com/dtolnay/semver/releases)
- [Commits](dtolnay/semver@1.0.26...1.0.27)

Updates `serde` from 1.0.218 to 1.0.226
- [Release notes](https://github.com/serde-rs/serde/releases)
- [Commits](serde-rs/serde@v1.0.218...v1.0.226)

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

Updates `slab` from 0.4.9 to 0.4.11
- [Release notes](https://github.com/tokio-rs/slab/releases)
- [Changelog](https://github.com/tokio-rs/slab/blob/master/CHANGELOG.md)
- [Commits](tokio-rs/slab@v0.4.9...v0.4.11)

Updates `sqlx` from 0.8.3 to 0.8.6
- [Changelog](https://github.com/launchbadge/sqlx/blob/main/CHANGELOG.md)
- [Commits](launchbadge/sqlx@v0.8.3...v0.8.6)

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

Updates `time` from 0.3.39 to 0.3.44
- [Release notes](https://github.com/time-rs/time/releases)
- [Changelog](https://github.com/time-rs/time/blob/main/CHANGELOG.md)
- [Commits](time-rs/time@v0.3.39...v0.3.44)

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

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

Updates `tower-http` from 0.6.2 to 0.6.6
- [Release notes](https://github.com/tower-rs/tower-http/releases)
- [Commits](tower-rs/tower-http@tower-http-0.6.2...tower-http-0.6.6)

Updates `url` from 2.5.4 to 2.5.7
- [Release notes](https://github.com/servo/rust-url/releases)
- [Commits](servo/rust-url@v2.5.4...v2.5.7)

Updates `strum` from 0.27.1 to 0.27.2
- [Release notes](https://github.com/Peternator7/strum/releases)
- [Changelog](https://github.com/Peternator7/strum/blob/master/CHANGELOG.md)
- [Commits](Peternator7/strum@v0.27.1...v0.27.2)

Updates `phf` from 0.8.0 to 0.12.1
- [Release notes](https://github.com/rust-phf/rust-phf/releases)
- [Changelog](https://github.com/rust-phf/rust-phf/blob/main/RELEASE_PROCESS.md)
- [Commits](rust-phf/rust-phf@v0.8.0...v0.12.1)

Updates `socket2` from 0.5.8 to 0.6.0
- [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)

---
updated-dependencies:
- dependency-name: tempfile
  dependency-version: 3.23.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: anyhow
  dependency-version: 1.0.100
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: async-trait
  dependency-version: 0.1.89
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: backtrace
  dependency-version: 0.3.75
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: bitflags
  dependency-version: 2.9.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: cfg-if
  dependency-version: 1.0.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: console
  dependency-version: 0.16.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: ctrlc
  dependency-version: 3.4.6
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: governor
  dependency-version: 0.10.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: http-body-util
  dependency-version: 0.1.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: hyper
  dependency-version: 1.7.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: hyper-util
  dependency-version: 0.1.17
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: is-terminal
  dependency-version: 0.4.16
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: libc
  dependency-version: 0.2.176
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: log
  dependency-version: 0.4.28
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: memchr
  dependency-version: 2.7.5
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: num_cpus
  dependency-version: 1.17.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: proc-macro2
  dependency-version: 1.0.101
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: proptest
  dependency-version: 1.8.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: quote
  dependency-version: 1.0.40
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: rayon
  dependency-version: 1.11.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: regex
  dependency-version: 1.11.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: reqwest
  dependency-version: 0.12.15
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: rhai
  dependency-version: 1.23.4
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: semver
  dependency-version: 1.0.27
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: serde
  dependency-version: 1.0.226
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: serde_json
  dependency-version: 1.0.145
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: slab
  dependency-version: 0.4.11
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: sqlx
  dependency-version: 0.8.6
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: syn
  dependency-version: 2.0.106
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: time
  dependency-version: 0.3.44
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: tokio
  dependency-version: 1.47.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: tokio-util
  dependency-version: 0.7.16
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: tower-http
  dependency-version: 0.6.6
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: url
  dependency-version: 2.5.7
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: strum
  dependency-version: 0.27.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: phf
  dependency-version: 0.12.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: socket2
  dependency-version: 0.6.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot force-pushed the dependabot/cargo/all-dependencies-715acebe45 branch from a93e6a5 to 400bc5c Compare September 25, 2025 09:21
@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github Sep 30, 2025

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

@dependabot dependabot bot closed this Sep 30, 2025
@dependabot dependabot bot deleted the dependabot/cargo/all-dependencies-715acebe45 branch September 30, 2025 21:25
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