Skip to content

chore(deps): bump the minor group across 1 directory with 79 updates#327

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/cargo/minor-9df56c6212
Open

chore(deps): bump the minor group across 1 directory with 79 updates#327
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/cargo/minor-9df56c6212

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Dec 11, 2025

Copy link
Copy Markdown
Contributor

Bumps the minor group with 60 updates in the / directory:

Package From To
anyhow 1.0.98 1.0.100
jiff 0.2.10 0.2.16
quote 1.0.40 1.0.42
proc-macro2 1.0.95 1.0.103
serde-bool 0.1.3 0.1.4
serde_json 1.0.140 1.0.145
syn 2.0.101 2.0.111
adler2 2.0.0 2.0.1
ahash 0.8.11 0.8.12
aho-corasick 1.1.3 1.1.4
autocfg 1.4.0 1.5.0
backtrace 0.3.74 0.3.76
bitflags 2.9.0 2.10.0
borrow-or-share 0.2.2 0.2.4
bumpalo 3.17.0 3.19.0
bytecount 0.6.8 0.6.9
bytes 1.10.1 1.11.0
cc 1.2.20 1.2.49
cfg-if 1.0.0 1.0.4
crc32fast 1.4.2 1.5.0
dyn-clone 1.0.19 1.0.20
flate2 1.1.1 1.1.5
form_urlencoded 1.2.1 1.2.2
http 1.3.1 1.4.0
hyper 1.6.0 1.8.1
hyper-util 0.1.11 0.1.19
idna 1.0.3 1.1.0
idna_adapter 1.2.0 1.2.1
indexmap 2.9.0 2.12.1
jiff-tzdb 0.1.4 0.1.5
libc 0.2.172 0.2.178
lock_api 0.4.12 0.4.14
log 0.4.27 0.4.29
memchr 2.7.4 2.7.6
miniz_oxide 0.8.8 0.8.9
mio 1.0.3 1.1.1
parking_lot 0.12.3 0.12.5
percent-encoding 2.3.1 2.3.2
portable-atomic 1.11.0 1.11.1
prettyplease 0.2.32 0.2.37
redox_syscall 0.5.11 0.5.18
ref-cast 1.0.24 1.0.25
regex-automata 0.4.9 0.4.13
regex-syntax 0.8.5 0.8.8
reqwest 0.12.15 0.12.25
rustc-demangle 0.1.24 0.1.26
rustls 0.23.26 0.23.28
rustls-pki-types 1.11.0 1.13.1
rustversion 1.0.20 1.0.22
semver 1.0.26 1.0.27
slab 0.4.9 0.4.11
smallvec 1.15.0 1.15.1
stable_deref_trait 1.2.0 1.2.1
synstructure 0.13.1 0.13.2
tokio 1.44.2 1.48.0
tracing 0.1.41 0.1.43
unicode-ident 1.0.18 1.0.22
url 2.5.4 2.5.7
uuid 1.16.0 1.19.0
zeroize 1.8.1 1.8.2

Updates anyhow from 1.0.98 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)
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 jiff from 0.2.10 to 0.2.16

Changelog

Sourced from jiff's changelog.

0.2.16 (2025-11-07)

This release contains a number of enhancements and bug fixes that have accrued over the last few months. Most are small polishes. A couple of the bug fixes apply to panics that could occur when parsing invalid TZ strings or invalid strptime format strings.

Also, parsing into a Span should now be much faster (for both the ISO 8601 and "friendly" duration formats).

Enhancements:

  • #298: Add Serde helpers for (de)serializing std::time::Duration values.
  • #396: Add Sub and Add trait implementations for Zoned (in addition to the already existing trait implementations for &Zoned).
  • #397: Add BrokenDownTime::set_meridiem and ensure it overrides the hour when formatting.
  • #409: Switch dependency on serde to serde_core. This should help speed up compilation times in some cases.
  • #430: Add new Zoned::series API, making it consistent with the same API on other datetime types.
  • #432: When lenient mode is enabled for strftime, Jiff will no longer error when the formatting string contains invalid UTF-8.
  • #432: Formatting of %y and %g no longer fails based on the specific year value.
  • #432: Parsing of %s is now a bit more consistent with other fields. Moreover, BrokenDownTime::{to_timestamp,to_zoned} will now prefer timestamps parsed with %s over any other fields that have been parsed.
  • #433: Allow parsing just a %s into a Zoned via the Etc/Unknown time zone.

Bug fixes:

  • #386: Fix a bug where 2087-12-31T23:00:00Z in the Africa/Casablanca time zone could not be round-tripped (because its offset was calculated incorrectly as a result of not handling "permanent DST" POSIX time zones).
  • #407: Fix a panic that occurred when parsing an empty string as a POSIX time zone.
  • #410: Fix a panic that could occur when parsing %: via strptime APIs.
  • #414: Update some parts of the documentation to indicate that TimeZone::unknown()

... (truncated)

Commits
  • 2ef6045 0.2.16
  • 0b293b4 doc: a few documentation fixes
  • 0fe02f2 changelog: add entries for duration work
  • b9484ea fmt/serde: add helpers for std::time::Duration
  • 87c607b fmt: add parsing routines for std::time::Duration
  • 8a7f249 fmt: add support for printing std::time::Duration
  • 3e49cbe signed_duration: remove extraneous comments
  • b5f30f2 fmt: make fractional formatting use u32
  • 8e61ffd fmt: add unsigned integer formatting
  • 1910063 fmt: refactor friendly printer to use std::time::Duration
  • Additional commits viewable in compare view

Updates quote from 1.0.40 to 1.0.42

Release notes

Sourced from quote's releases.

1.0.42

1.0.41

  • Improve compile error when repetition contains no interpolated value that is an iterator (#302)
Commits
  • bb9e7a4 Release 1.0.42
  • 683c1d6 Merge pull request #311 from dtolnay/append
  • ed93e8e Revert PR 305
  • 1f2a959 Merge pull request #310 from dtolnay/up
  • 37448aa Raise required compiler to Rust 1.68
  • 39ac89e Resolve manual_let_else pedantic clippy lint
  • f3eac36 Raise required compiler to Rust 1.65
  • 7b490c5 Merge pull request #309 from dtolnay/append
  • 71dfa84 Apply pattern from PR 306 to append_separated & append_terminated
  • df32af7 Touch up PR 306
  • Additional commits viewable in compare view

Updates proc-macro2 from 1.0.95 to 1.0.103

Release notes

Sourced from proc-macro2's releases.

1.0.103

  • Add semver-exempt Literal methods str_value, cstr_value, byte_str_value (#525)

1.0.102

  • Fix interaction of Display impls for TokenStream and Ident with formatting specifiers for padding, alignment, width (#523, #524)

1.0.101

  • Optimize Span location accessors (#519)

1.0.100

  • Stabilize Span methods on Rust 1.88+: start, end, line, column, file, local_file (#517, #518)

1.0.99

  • Prevent Span's unstable API becoming unavailable from a future new compiler lint (#515)

1.0.98

1.0.97

  • Allow build-script cleanup failure with NFSv3 output directory to be non-fatal (#505, #512, thanks @​davvid)

1.0.96

  • Simplify how rustdoc flags are decided during docs.rs builds (#511)
Commits
  • d1bf13a Release 1.0.103
  • 29e08c0 Merge pull request #525 from dtolnay/literalvalue
  • f9eec24 Restore support for rustc older than 1.74
  • cc983fc Restore support for rustc older than 1.79
  • 465f781 Restore support for rustc older than 1.89
  • ab5231c Add string literal value tests
  • 4c039a8 Add Literal methods from proc_macro_value feature
  • 885fde9 Vendor rustc_literal_escaper v0.0.5
  • 39b016a Release 1.0.102
  • c3870f1 Add raw identifier Debug test
  • Additional commits viewable in compare view

Updates serde from 1.0.219 to 1.0.228

Release notes

Sourced from serde's releases.

v1.0.228

  • Allow building documentation with RUSTDOCFLAGS='--cfg=docsrs' set for the whole dependency graph (#2995)

v1.0.227

  • Documentation improvements (#2991)

v1.0.226

  • Deduplicate variant matching logic inside generated Deserialize impl for adjacently tagged enums (#2935, thanks @​Mingun)

v1.0.225

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

v1.0.224

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

v1.0.223

  • Fix serde_core documentation links (#2978)

v1.0.222

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

v1.0.221

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

v1.0.220

Commits
  • a866b33 Release 1.0.228
  • 5adc9e8 Merge pull request #2995 from dtolnay/rustdocflags
  • ab58178 Workaround for RUSTDOCFLAGS='--cfg=docsrs'
  • 415d9fc Release 1.0.227
  • 7c58427 Merge pull request #2991 from dtolnay/inlinecoredoc
  • 9d3410e Merge pull request #2992 from dtolnay/inplaceseed
  • 2fb6748 Remove InPlaceSeed public re-export
  • f8137c7 Inline serde_core into serde in docsrs mode
  • b7dbf7e Merge pull request #2990 from dtolnay/integer128
  • 7c83691 No longer macro_use integer128 module
  • Additional commits viewable in compare view

Updates serde-bool from 0.1.3 to 0.1.4

Release notes

Sourced from serde-bool's releases.

serde-bool: v0.1.4

  • Migrate serde dependency to serde_core.
  • Minimum supported Rust version (MSRV) is now 1.70.
Commits
  • 76d644b chore(serde-secrecy): prepare release 0.2.5
  • 6ac2b00 chore(serde-decimal): prepare release 0.2.5
  • ce065ae chore(serde-bool): prepare release 0.1.4
  • a8a050b chore(double-int): prepare release 0.1.1
  • 25ea891 chore(detrim): prepare release 0.1.6
  • b383784 refactor: migrate to serde_core
  • 3736c18 chore(deps): bump actions/checkout from 4 to 5 (#184)
  • 3d084d9 chore(deps): bump actions-rust-lang/setup-rust-toolchain (#185)
  • fa918b0 chore(deps): bump codecov/codecov-action from 5.4.3 to 5.5.0 (#186)
  • 5bd808d chore(deps): bump taiki-e/install-action from 2.57.4 to 2.58.29 (#183)
  • Additional commits viewable in compare view

Updates serde_json from 1.0.140 to 1.0.145

Release notes

Sourced from serde_json's releases.

v1.0.145

  • Raise serde version requirement to >=1.0.220

v1.0.144

  • Switch serde dependency to serde_core (#1285)

v1.0.143

v1.0.142

v1.0.141

Commits
  • efa66e3 Release 1.0.145
  • 23679e2 Add serde version constraint
  • fc27baf Release 1.0.144
  • caef3c6 Ignore uninlined_format_args pedantic clippy lint
  • 81ba3aa Merge pull request #1285 from dtolnay/serdecore
  • d21e8ce Switch serde dependency to serde_core
  • 6beb6cd Merge pull request #1286 from dtolnay/up
  • 1dbc803 Raise required compiler to Rust 1.61
  • 0bf5d87 Enforce trybuild >= 1.0.108
  • d12e943 Update actions/checkout@v4 -> v5
  • Additional commits viewable in compare view

Updates syn from 2.0.101 to 2.0.111

Release notes

Sourced from syn's releases.

2.0.111

  • Allow first argument of braced!, bracketed!, parenthesized! to be an otherwise unused variable (#1946)

2.0.110

  • Tweaks to improve build speed (#1939, thanks @​dishmaker)
  • Make syn::ext::IdentExt::unraw available without "parsing" feature (#1940)
  • Support parsing syn::Meta followed by => (#1944)

2.0.109

2.0.108

  • Parse unrecognized or invalid literals as Lit::Verbatim (#1925)

2.0.107

  • Improve panic message when constructing a LitInt, LitFloat, or Lit from invalid syntax (#1917)
  • Improve panic message on Punctuated index out of bounds (#1922)

2.0.106

  • Replace ~const syntax with [const] conditionally const syntax in trait bounds (#1896, rust-lang/rust#139858)
  • Support conditionally const impl Trait types (#1897)
  • Reject polarity modifier and lifetime binder used in the same trait bound (#1899, rust-lang/rust#127054)
  • Parse const trait bounds with bound lifetimes (#1902)
  • Parse bound lifetimes with lifetime bounds (#1903)
  • Allow type parameters and const parameters in trait bounds and generic closures (#1904, #1907, #1908, #1909)

2.0.105

2.0.104

  • Disallow attributes on range expression (#1872)

2.0.103

  • Insert parentheses around binary operation with attribute (#1871)

2.0.102

  • Fix printing of nested Expr::Index and Expr::Tuple in non-full mode (#1869)
Commits
  • 4e50867 Release 2.0.111
  • c57334b Merge pull request #1946 from dtolnay/unusedgroup
  • 6a43384 Suppress unused variable warning on variables used in group macro
  • 7ff6c86 Update actions/checkout@v5 -> v6
  • 59ce6bb Update test suite to nightly-2025-11-20
  • 3d91b8c Update test suite to nightly-2025-11-11
  • 2d87fca Delete version requirement from readme
  • 1c8cabe Release 2.0.110
  • 8ef195b Merge pull request #1944 from dtolnay/metaarrow
  • 9ab4aef Support parsing Meta followed by fat arrow
  • Additional commits viewable in compare view

Updates adler2 from 2.0.0 to 2.0.1

Changelog

Sourced from adler2's changelog.

2.0.1 - 2025-06-09

Other

  • Remove compiler-builtins from rustc-dep-of-std dependencies - (7cdbd39) - Trevor Gross

Commits

Updates ahash from 0.8.11 to 0.8.12

Release notes

Sourced from ahash's releases.

v0.8.12

What's Changed

  • Merged minor changes in from master
Commits
  • 10c4f48 Merge branch 'master' into release-0.8
  • 9aa1ba2 Merge master changes into 0.8 release branch (#272)
  • 5587f60 Eliminate an unused use of convert!. (#271)
  • b8f78a4 Don't condition "aes" support for AArch64 on feature "nightly-arm-aes". (#268)
  • c55f7e1 Do not build broken doc test. (#267)
  • cc852e7 Address unexpected_cfg lints. (#269)
  • 7dbeb5b chore: bump zero-copy (#265)
  • 2228126 Update no_std test (#264)
  • 0b8488e Use built-in conversions for primitive <-> byte array conversions. (#256)
  • a5ada48 Make CallHasher specific to ahash::RandomState (#261)
  • Additional commits viewable in compare view

Updates aho-corasick from 1.1.3 to 1.1.4

Commits

Updates autocfg from 1.4.0 to 1.5.0

Commits

Updates backtrace from 0.3.74 to 0.3.76

Release notes

Sourced from backtrace's releases.

backtrace-v0.3.76

Behavior

  • Fix inverted polarity of "full printing" logic in rust-lang/backtrace-rs#726: Previously we used to do the opposite of what you would expect.

Platform Support

Dependencies

Changelog

Sourced from backtrace's changelog.

0.3.76 - 2025-09-26

Behavior

  • Fix inverted polarity of "full printing" logic in rust-lang/backtrace-rs#726: Previously we used to do the opposite of what you would expect.

Platform Support

Dependencies

Commits
  • 775f6a1 modify CHANGELOG.md to not be a git log dump
  • bb0cdc3 chore: release v0.3.76
  • a8b55f0 Merge of rust-lang/backtrace-rs#725: Fix missing alignment check for ELF note...
  • 0b83800 Expand take_nhdr doc-comment
  • a405950 Merge pull request #737 from workingjubilee/address-dbghelp-soundness-risks
  • 06dca9a Expand doc-comment on do_resolve
  • 05ad047 Remove padding bytes risk in dbghelp with MaybeUninit
  • dccdb4d Upgrade cpp_demanglerust-lang/backtrace-rs#732
  • 50fe434rust-lang/backtrace-rs#734
  • 79d3514 Switch from windows-targets to windows-linkrust-lang/backtrace-rs#727
  • Additional commits viewable in compare view

Updates bitflags from 2.9.0 to 2.10.0

Release notes

Sourced from bitflags's releases.

2.10.0

What's Changed

New Contributors

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

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

What's Changed

New Contributors

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

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
  • 7cc8595 Merge pull request #468 from bitflags/cargo/2.10.0
  • ea9b2f7 prepare for 2.10.0 release
  • 7fdc68c Merge pull request #467 from KodrAus/feat/serde_core
  • fdc1d4a depend on serde_core instead of serde
  • 7922585 Merge pull request #466 from KodrAus/chore/iter-named-tests
  • 409666e rename iter_named to iter_defined_names
  • 50fab91 Merge pull request #465 from ssrlive/main
  • f886489 Fix bitflags_custom_bits.stderr & bitflags_trait_custom.stderr
  • 39bd761 rename all_named_flags to iter_named
  • 3e52578 Implement iterator for all named flags
  • Additional commits viewable in compare view

Updates borrow-or-share from 0.2.2 to 0.2.4

Commits

Updates bumpalo from 3.17.0 to 3.19.0

Changelog

Sourced from bumpalo's changelog.

3.19.0

Released 2025-06-24.

Added

  • Added bumpalo::collections::Vec::retain_mut, similar to std::vec::Vec::retain_mut.

3.18.1

Released 2025-06-05.

Removed

  • Removed the allocator-api2 version bump from 3.18.0, as it was not actually semver compatible.

3.18.0 (yanked)

Released 2025-06-05.

Added

  • Added support for enforcing a minimum alignment on all allocations inside a Bump arena, which can provide speed ups when allocating objects whose alignment is less than or equal to that minimum.
  • Added serde serialization support for bumpalo::collections::String.
  • Added some missing fallible slice allocation function variants.

Changed

  • Replaced extend_from_slice implementation with a formally-verified version that is also faster and more-optimizable for LLVM.
  • Updated allocator-api2 support to version 0.3.*.

Fixed

  • Fixed a bug where the allocated_bytes metrics helper was accidentally including the size of bumpalo's footer, rather than just reporting the user-allocated bytes.

Commits

Updates bytecount from 0.6.8 to 0.6.9

Commits

Updates bytes from 1.10.1 to 1.11.0

Release notes

Sourced from bytes's releases.

Bytes v1.11.0

1.11.0 (November 14th, 2025)

  • Bump MSRV to 1.57 (#788)

Fixed

  • fix: BytesMut only reuse if src has remaining (#803)
  • Specialize BytesMut::put::<Bytes> (#793)
  • Reserve capacity in BytesMut::put (#794)
  • Change BytesMut::remaining_mut to use isize::MAX instead of usize::MAX (#795)

Internal changes

  • Guarantee address in slice() for empty slices. (#780)
  • Rename Vtable::to_* -> Vtable::into_* (#776)
  • Fix latest clippy warnings (#787)
  • Ignore BytesMut::freeze doctest on wasm (#790)
  • Move drop_fn of from_owner into vtable (#801)
Description has been truncated

Bumps the minor group with 60 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [anyhow](https://github.com/dtolnay/anyhow) | `1.0.98` | `1.0.100` |
| [jiff](https://github.com/BurntSushi/jiff) | `0.2.10` | `0.2.16` |
| [quote](https://github.com/dtolnay/quote) | `1.0.40` | `1.0.42` |
| [proc-macro2](https://github.com/dtolnay/proc-macro2) | `1.0.95` | `1.0.103` |
| [serde-bool](https://github.com/x52dev/serde-utils) | `0.1.3` | `0.1.4` |
| [serde_json](https://github.com/serde-rs/json) | `1.0.140` | `1.0.145` |
| [syn](https://github.com/dtolnay/syn) | `2.0.101` | `2.0.111` |
| [adler2](https://github.com/oyvindln/adler2) | `2.0.0` | `2.0.1` |
| [ahash](https://github.com/tkaitchuck/ahash) | `0.8.11` | `0.8.12` |
| [aho-corasick](https://github.com/BurntSushi/aho-corasick) | `1.1.3` | `1.1.4` |
| [autocfg](https://github.com/cuviper/autocfg) | `1.4.0` | `1.5.0` |
| [backtrace](https://github.com/rust-lang/backtrace-rs) | `0.3.74` | `0.3.76` |
| [bitflags](https://github.com/bitflags/bitflags) | `2.9.0` | `2.10.0` |
| [borrow-or-share](https://github.com/yescallop/borrow-or-share) | `0.2.2` | `0.2.4` |
| [bumpalo](https://github.com/fitzgen/bumpalo) | `3.17.0` | `3.19.0` |
| [bytecount](https://github.com/llogiq/bytecount) | `0.6.8` | `0.6.9` |
| [bytes](https://github.com/tokio-rs/bytes) | `1.10.1` | `1.11.0` |
| [cc](https://github.com/rust-lang/cc-rs) | `1.2.20` | `1.2.49` |
| [cfg-if](https://github.com/rust-lang/cfg-if) | `1.0.0` | `1.0.4` |
| [crc32fast](https://github.com/srijs/rust-crc32fast) | `1.4.2` | `1.5.0` |
| [dyn-clone](https://github.com/dtolnay/dyn-clone) | `1.0.19` | `1.0.20` |
| [flate2](https://github.com/rust-lang/flate2-rs) | `1.1.1` | `1.1.5` |
| [form_urlencoded](https://github.com/servo/rust-url) | `1.2.1` | `1.2.2` |
| [http](https://github.com/hyperium/http) | `1.3.1` | `1.4.0` |
| [hyper](https://github.com/hyperium/hyper) | `1.6.0` | `1.8.1` |
| [hyper-util](https://github.com/hyperium/hyper-util) | `0.1.11` | `0.1.19` |
| [idna](https://github.com/servo/rust-url) | `1.0.3` | `1.1.0` |
| [idna_adapter](https://github.com/hsivonen/idna_adapter) | `1.2.0` | `1.2.1` |
| [indexmap](https://github.com/indexmap-rs/indexmap) | `2.9.0` | `2.12.1` |
| [jiff-tzdb](https://github.com/BurntSushi/jiff) | `0.1.4` | `0.1.5` |
| [libc](https://github.com/rust-lang/libc) | `0.2.172` | `0.2.178` |
| [lock_api](https://github.com/Amanieu/parking_lot) | `0.4.12` | `0.4.14` |
| [log](https://github.com/rust-lang/log) | `0.4.27` | `0.4.29` |
| [memchr](https://github.com/BurntSushi/memchr) | `2.7.4` | `2.7.6` |
| [miniz_oxide](https://github.com/Frommi/miniz_oxide) | `0.8.8` | `0.8.9` |
| [mio](https://github.com/tokio-rs/mio) | `1.0.3` | `1.1.1` |
| [parking_lot](https://github.com/Amanieu/parking_lot) | `0.12.3` | `0.12.5` |
| [percent-encoding](https://github.com/servo/rust-url) | `2.3.1` | `2.3.2` |
| [portable-atomic](https://github.com/taiki-e/portable-atomic) | `1.11.0` | `1.11.1` |
| [prettyplease](https://github.com/dtolnay/prettyplease) | `0.2.32` | `0.2.37` |
| redox_syscall | `0.5.11` | `0.5.18` |
| [ref-cast](https://github.com/dtolnay/ref-cast) | `1.0.24` | `1.0.25` |
| [regex-automata](https://github.com/rust-lang/regex) | `0.4.9` | `0.4.13` |
| [regex-syntax](https://github.com/rust-lang/regex) | `0.8.5` | `0.8.8` |
| [reqwest](https://github.com/seanmonstar/reqwest) | `0.12.15` | `0.12.25` |
| [rustc-demangle](https://github.com/rust-lang/rustc-demangle) | `0.1.24` | `0.1.26` |
| [rustls](https://github.com/rustls/rustls) | `0.23.26` | `0.23.28` |
| [rustls-pki-types](https://github.com/rustls/pki-types) | `1.11.0` | `1.13.1` |
| [rustversion](https://github.com/dtolnay/rustversion) | `1.0.20` | `1.0.22` |
| [semver](https://github.com/dtolnay/semver) | `1.0.26` | `1.0.27` |
| [slab](https://github.com/tokio-rs/slab) | `0.4.9` | `0.4.11` |
| [smallvec](https://github.com/servo/rust-smallvec) | `1.15.0` | `1.15.1` |
| [stable_deref_trait](https://github.com/storyyeller/stable_deref_trait) | `1.2.0` | `1.2.1` |
| [synstructure](https://github.com/mystor/synstructure) | `0.13.1` | `0.13.2` |
| [tokio](https://github.com/tokio-rs/tokio) | `1.44.2` | `1.48.0` |
| [tracing](https://github.com/tokio-rs/tracing) | `0.1.41` | `0.1.43` |
| [unicode-ident](https://github.com/dtolnay/unicode-ident) | `1.0.18` | `1.0.22` |
| [url](https://github.com/servo/rust-url) | `2.5.4` | `2.5.7` |
| [uuid](https://github.com/uuid-rs/uuid) | `1.16.0` | `1.19.0` |
| [zeroize](https://github.com/RustCrypto/utils) | `1.8.1` | `1.8.2` |



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

Updates `jiff` from 0.2.10 to 0.2.16
- [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.10...jiff-static-0.2.16)

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

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

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

Updates `serde-bool` from 0.1.3 to 0.1.4
- [Release notes](https://github.com/x52dev/serde-utils/releases)
- [Commits](x52dev/serde-utils@serde-bool-v0.1.3...serde-bool-v0.1.4)

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

Updates `adler2` from 2.0.0 to 2.0.1
- [Changelog](https://github.com/oyvindln/adler2/blob/main/CHANGELOG.md)
- [Commits](https://github.com/oyvindln/adler2/commits)

Updates `ahash` from 0.8.11 to 0.8.12
- [Release notes](https://github.com/tkaitchuck/ahash/releases)
- [Commits](tkaitchuck/aHash@v0.8.11...v0.8.12)

Updates `aho-corasick` from 1.1.3 to 1.1.4
- [Commits](BurntSushi/aho-corasick@1.1.3...1.1.4)

Updates `autocfg` from 1.4.0 to 1.5.0
- [Commits](cuviper/autocfg@1.4.0...1.5.0)

Updates `backtrace` from 0.3.74 to 0.3.76
- [Release notes](https://github.com/rust-lang/backtrace-rs/releases)
- [Changelog](https://github.com/rust-lang/backtrace-rs/blob/master/CHANGELOG.md)
- [Commits](rust-lang/backtrace-rs@0.3.74...backtrace-v0.3.76)

Updates `bitflags` from 2.9.0 to 2.10.0
- [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.10.0)

Updates `borrow-or-share` from 0.2.2 to 0.2.4
- [Commits](yescallop/borrow-or-share@v0.2.2...v0.2.4)

Updates `bumpalo` from 3.17.0 to 3.19.0
- [Changelog](https://github.com/fitzgen/bumpalo/blob/main/CHANGELOG.md)
- [Commits](https://github.com/fitzgen/bumpalo/commits)

Updates `bytecount` from 0.6.8 to 0.6.9
- [Commits](https://github.com/llogiq/bytecount/commits)

Updates `bytes` from 1.10.1 to 1.11.0
- [Release notes](https://github.com/tokio-rs/bytes/releases)
- [Changelog](https://github.com/tokio-rs/bytes/blob/master/CHANGELOG.md)
- [Commits](tokio-rs/bytes@v1.10.1...v1.11.0)

Updates `cc` from 1.2.20 to 1.2.49
- [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.49)

Updates `cfg-if` from 1.0.0 to 1.0.4
- [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.4)

Updates `crc32fast` from 1.4.2 to 1.5.0
- [Commits](srijs/rust-crc32fast@v1.4.2...v1.5.0)

Updates `dyn-clone` from 1.0.19 to 1.0.20
- [Release notes](https://github.com/dtolnay/dyn-clone/releases)
- [Commits](dtolnay/dyn-clone@1.0.19...1.0.20)

Updates `flate2` from 1.1.1 to 1.1.5
- [Release notes](https://github.com/rust-lang/flate2-rs/releases)
- [Commits](rust-lang/flate2-rs@1.1.1...1.1.5)

Updates `form_urlencoded` from 1.2.1 to 1.2.2
- [Release notes](https://github.com/servo/rust-url/releases)
- [Commits](servo/rust-url@v1.2.1...v1.2.2)

Updates `gimli` from 0.31.1 to 0.32.3
- [Changelog](https://github.com/gimli-rs/gimli/blob/master/CHANGELOG.md)
- [Commits](gimli-rs/gimli@0.31.1...0.32.3)

Updates `http` from 1.3.1 to 1.4.0
- [Release notes](https://github.com/hyperium/http/releases)
- [Changelog](https://github.com/hyperium/http/blob/master/CHANGELOG.md)
- [Commits](hyperium/http@v1.3.1...v1.4.0)

Updates `hyper` from 1.6.0 to 1.8.1
- [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.8.1)

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

Updates `idna` from 1.0.3 to 1.1.0
- [Release notes](https://github.com/servo/rust-url/releases)
- [Commits](https://github.com/servo/rust-url/commits)

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

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

Updates `jiff-static` from 0.2.10 to 0.2.16
- [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.10...jiff-static-0.2.16)

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

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

Updates `litemap` from 0.7.5 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 `lock_api` from 0.4.12 to 0.4.14
- [Release notes](https://github.com/Amanieu/parking_lot/releases)
- [Changelog](https://github.com/Amanieu/parking_lot/blob/master/CHANGELOG.md)
- [Commits](Amanieu/parking_lot@lock_api-0.4.12...lock_api-v0.4.14)

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

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

Updates `miniz_oxide` from 0.8.8 to 0.8.9
- [Changelog](https://github.com/Frommi/miniz_oxide/blob/master/CHANGELOG.md)
- [Commits](https://github.com/Frommi/miniz_oxide/commits)

Updates `mio` from 1.0.3 to 1.1.1
- [Release notes](https://github.com/tokio-rs/mio/releases)
- [Changelog](https://github.com/tokio-rs/mio/blob/master/CHANGELOG.md)
- [Commits](tokio-rs/mio@v1.0.3...v1.1.1)

Updates `object` from 0.36.7 to 0.37.3
- [Changelog](https://github.com/gimli-rs/object/blob/master/CHANGELOG.md)
- [Commits](gimli-rs/object@0.36.7...0.37.3)

Updates `parking_lot` from 0.12.3 to 0.12.5
- [Release notes](https://github.com/Amanieu/parking_lot/releases)
- [Changelog](https://github.com/Amanieu/parking_lot/blob/master/CHANGELOG.md)
- [Commits](Amanieu/parking_lot@0.12.3...parking_lot-v0.12.5)

Updates `parking_lot_core` from 0.9.10 to 0.9.12
- [Release notes](https://github.com/Amanieu/parking_lot/releases)
- [Changelog](https://github.com/Amanieu/parking_lot/blob/master/CHANGELOG.md)
- [Commits](Amanieu/parking_lot@core-0.9.10...parking_lot_core-v0.9.12)

Updates `percent-encoding` from 2.3.1 to 2.3.2
- [Release notes](https://github.com/servo/rust-url/releases)
- [Commits](https://github.com/servo/rust-url/commits)

Updates `portable-atomic` from 1.11.0 to 1.11.1
- [Release notes](https://github.com/taiki-e/portable-atomic/releases)
- [Changelog](https://github.com/taiki-e/portable-atomic/blob/main/CHANGELOG.md)
- [Commits](taiki-e/portable-atomic@v1.11.0...v1.11.1)

Updates `prettyplease` from 0.2.32 to 0.2.37
- [Release notes](https://github.com/dtolnay/prettyplease/releases)
- [Commits](dtolnay/prettyplease@0.2.32...0.2.37)

Updates `redox_syscall` from 0.5.11 to 0.5.18

Updates `ref-cast` from 1.0.24 to 1.0.25
- [Release notes](https://github.com/dtolnay/ref-cast/releases)
- [Commits](dtolnay/ref-cast@1.0.24...1.0.25)

Updates `ref-cast-impl` from 1.0.24 to 1.0.25
- [Release notes](https://github.com/dtolnay/ref-cast/releases)
- [Commits](dtolnay/ref-cast@1.0.24...1.0.25)

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

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

Updates `reqwest` from 0.12.15 to 0.12.25
- [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.25)

Updates `rustc-demangle` from 0.1.24 to 0.1.26
- [Release notes](https://github.com/rust-lang/rustc-demangle/releases)
- [Changelog](https://github.com/rust-lang/rustc-demangle/blob/main/CHANGELOG.md)
- [Commits](rust-lang/rustc-demangle@0.1.24...rustc-demangle-v0.1.26)

Updates `rustls` from 0.23.26 to 0.23.28
- [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.28)

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

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

Updates `rustversion` from 1.0.20 to 1.0.22
- [Release notes](https://github.com/dtolnay/rustversion/releases)
- [Commits](dtolnay/rustversion@1.0.20...1.0.22)

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_derive` from 1.0.219 to 1.0.228
- [Release notes](https://github.com/serde-rs/serde/releases)
- [Commits](serde-rs/serde@v1.0.219...v1.0.228)

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 `smallvec` from 1.15.0 to 1.15.1
- [Release notes](https://github.com/servo/rust-smallvec/releases)
- [Commits](servo/rust-smallvec@v1.15.0...v1.15.1)

Updates `stable_deref_trait` from 1.2.0 to 1.2.1
- [Commits](https://github.com/storyyeller/stable_deref_trait/commits)

Updates `synstructure` from 0.13.1 to 0.13.2
- [Commits](https://github.com/mystor/synstructure/commits)

Updates `tinystr` from 0.7.6 to 0.8.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 `tokio` from 1.44.2 to 1.48.0
- [Release notes](https://github.com/tokio-rs/tokio/releases)
- [Commits](tokio-rs/tokio@tokio-1.44.2...tokio-1.48.0)

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

Updates `tracing-core` from 0.1.33 to 0.1.35
- [Release notes](https://github.com/tokio-rs/tracing/releases)
- [Commits](tokio-rs/tracing@tracing-core-0.1.33...tracing-core-0.1.35)

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

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 `uuid` from 1.16.0 to 1.19.0
- [Release notes](https://github.com/uuid-rs/uuid/releases)
- [Commits](uuid-rs/uuid@v1.16.0...v1.19.0)

Updates `windows-link` from 0.1.1 to 0.2.1
- [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.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/ind/ixdtf@0.6.2)

Updates `yoke` from 0.7.5 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 `yoke-derive` from 0.7.5 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 `zerocopy` from 0.7.35 to 0.8.31
- [Release notes](https://github.com/google/zerocopy/releases)
- [Changelog](https://github.com/google/zerocopy/blob/main/CHANGELOG.md)
- [Commits](google/zerocopy@v0.7.35...v0.8.31)

Updates `zerocopy-derive` from 0.7.35 to 0.8.31
- [Release notes](https://github.com/google/zerocopy/releases)
- [Changelog](https://github.com/google/zerocopy/blob/main/CHANGELOG.md)
- [Commits](google/zerocopy@v0.7.35...v0.8.31)

Updates `zeroize` from 1.8.1 to 1.8.2
- [Commits](RustCrypto/utils@zeroize-v1.8.1...zeroize-v1.8.2)

Updates `zerovec` from 0.10.4 to 0.11.5
- [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.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)

---
updated-dependencies:
- dependency-name: anyhow
  dependency-version: 1.0.100
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: jiff
  dependency-version: 0.2.16
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: quote
  dependency-version: 1.0.42
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: proc-macro2
  dependency-version: 1.0.103
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: serde
  dependency-version: 1.0.228
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: serde-bool
  dependency-version: 0.1.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: serde_json
  dependency-version: 1.0.145
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: syn
  dependency-version: 2.0.111
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: adler2
  dependency-version: 2.0.1
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: ahash
  dependency-version: 0.8.12
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: aho-corasick
  dependency-version: 1.1.4
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: autocfg
  dependency-version: 1.5.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: backtrace
  dependency-version: 0.3.76
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: bitflags
  dependency-version: 2.10.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: borrow-or-share
  dependency-version: 0.2.4
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: bumpalo
  dependency-version: 3.19.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: bytecount
  dependency-version: 0.6.9
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: bytes
  dependency-version: 1.11.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: cc
  dependency-version: 1.2.49
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: cfg-if
  dependency-version: 1.0.4
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: crc32fast
  dependency-version: 1.5.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: dyn-clone
  dependency-version: 1.0.20
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: flate2
  dependency-version: 1.1.5
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: form_urlencoded
  dependency-version: 1.2.2
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: gimli
  dependency-version: 0.32.3
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: http
  dependency-version: 1.4.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: hyper
  dependency-version: 1.8.1
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: hyper-util
  dependency-version: 0.1.19
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: idna
  dependency-version: 1.1.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: idna_adapter
  dependency-version: 1.2.1
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: indexmap
  dependency-version: 2.12.1
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: jiff-static
  dependency-version: 0.2.16
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: jiff-tzdb
  dependency-version: 0.1.5
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: libc
  dependency-version: 0.2.178
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: litemap
  dependency-version: 0.8.1
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: lock_api
  dependency-version: 0.4.14
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: log
  dependency-version: 0.4.29
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: memchr
  dependency-version: 2.7.6
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: miniz_oxide
  dependency-version: 0.8.9
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: mio
  dependency-version: 1.1.1
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: object
  dependency-version: 0.37.3
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: parking_lot
  dependency-version: 0.12.5
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: parking_lot_core
  dependency-version: 0.9.12
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: percent-encoding
  dependency-version: 2.3.2
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: portable-atomic
  dependency-version: 1.11.1
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: prettyplease
  dependency-version: 0.2.37
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: redox_syscall
  dependency-version: 0.5.18
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: ref-cast
  dependency-version: 1.0.25
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: ref-cast-impl
  dependency-version: 1.0.25
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: regex-automata
  dependency-version: 0.4.13
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: regex-syntax
  dependency-version: 0.8.8
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: reqwest
  dependency-version: 0.12.25
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: rustc-demangle
  dependency-version: 0.1.26
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: rustls
  dependency-version: 0.23.28
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: rustls-pki-types
  dependency-version: 1.13.1
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: rustls-webpki
  dependency-version: 0.103.3
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: rustversion
  dependency-version: 1.0.22
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: semver
  dependency-version: 1.0.27
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: serde_derive
  dependency-version: 1.0.228
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: slab
  dependency-version: 0.4.11
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: smallvec
  dependency-version: 1.15.1
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: stable_deref_trait
  dependency-version: 1.2.1
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: synstructure
  dependency-version: 0.13.2
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: tinystr
  dependency-version: 0.8.2
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: tokio
  dependency-version: 1.48.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: tracing
  dependency-version: 0.1.43
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: tracing-core
  dependency-version: 0.1.35
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: unicode-ident
  dependency-version: 1.0.22
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: url
  dependency-version: 2.5.7
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: uuid
  dependency-version: 1.19.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: windows-link
  dependency-version: 0.2.1
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: writeable
  dependency-version: 0.6.2
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: yoke
  dependency-version: 0.8.1
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: yoke-derive
  dependency-version: 0.8.1
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: zerocopy
  dependency-version: 0.8.31
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: zerocopy-derive
  dependency-version: 0.8.31
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: zeroize
  dependency-version: 1.8.2
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: zerovec
  dependency-version: 0.11.5
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: zerovec-derive
  dependency-version: 0.11.2
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: minor
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file rust Pull requests that update Rust code labels Dec 11, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file rust Pull requests that update Rust code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants