Skip to content

Conversation

dependabot[bot]
Copy link
Contributor

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

⚠️ Dependabot is rebasing this PR ⚠️

Rebasing might not happen immediately, so don't worry if this takes some time.

Note: if you make any changes to this PR yourself, they will take precedence over the rebase.


Bumps the rust-dependencies group with 25 updates:

Package From To
chrono 0.4.41 0.4.42
serde 1.0.219 1.0.226
serde_json 1.0.143 1.0.145
indexmap 2.11.0 2.11.4
serde_bytes 0.11.17 0.11.19
serde_with 3.14.0 3.14.1
time 0.3.43 0.3.44
serde_path_to_error 0.1.17 0.1.20
proptest 1.7.0 1.8.0
cc 1.2.36 1.2.38
darling 0.20.11 0.21.3
darling_core 0.20.11 0.21.3
darling_macro 0.20.11 0.21.3
errno 0.3.13 0.3.14
find-msvc-tools 0.1.1 0.1.2
iana-time-zone 0.1.63 0.1.64
rustix 1.0.8 1.1.2
serde_derive 1.0.219 1.0.226
serde_with_macros 3.14.0 3.14.1
tempfile 3.21.0 3.22.0
unicode-ident 1.0.18 1.0.19
windows-core 0.61.2 0.62.0
windows-result 0.3.4 0.4.0
windows-strings 0.4.2 0.5.0
windows-sys 0.60.2 0.61.0

Updates chrono from 0.4.41 to 0.4.42

Release notes

Sourced from chrono's releases.

0.4.42

What's Changed

Commits
  • f3fd15f Bump version to 0.4.42
  • 5cf5603 strftime: add regression test case
  • a623170 strftime: simplify error handling
  • 36fbfb1 strftime: move specifier handling out of match to reduce rightward drift
  • 7f413c3 strftime: yield None early
  • 9d5dfe1 strftime: outline constants
  • e5f6be7 strftime: move error() method below caller
  • d516c27 strftime: merge impl blocks
  • 0ee2172 strftime: re-order items to keep impls together
  • 757a8b0 Upgrade to windows-bindgen 0.63
  • Additional commits viewable in compare view

Updates serde from 1.0.219 to 1.0.226

Release notes

Sourced from serde's releases.

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
  • 1799547 Release 1.0.226
  • 2dbeefb Merge pull request #2935 from Mingun/dedupe-adj-enums
  • 8a3c29f Merge pull request #2986 from dtolnay/didnotwork
  • defc24d Remove "did not work" comment from test suite
  • 2316610 Merge pull request #2929 from Mingun/flatten-enum-tests
  • c09e2bd Add tests for flatten unit variant in adjacently tagged (tag + content) enums
  • fe7dcc4 Test all possible orders of map entries for enum-flatten-in-struct representa...
  • a20e66e Check serialization in flatten::enum_::internally_tagged::unit_enum_with_unkn...
  • 1c1a5d9 Reorder struct_ and newtype tests of adjacently_tagged enums to match order i...
  • ee3c237 Opt in to generate-macro-expansion when building on docs.rs
  • Additional commits viewable in compare view

Updates serde_json from 1.0.143 to 1.0.145

Release notes

Sourced from serde_json's releases.

v1.0.145

  • Raise serde version requirement to >=1.0.220

v1.0.144

  • Switch serde dependency to serde_core (#1285)
Commits

Updates indexmap from 2.11.0 to 2.11.4

Changelog

Sourced from indexmap's changelog.

2.11.4 (2025-09-18)

  • Updated the hashbrown dependency to a range allowing 0.15 or 0.16.

2.11.3 (2025-09-15)

  • Make the minimum serde version only apply when "serde" is enabled.

2.11.2 (2025-09-15)

  • Switched the "serde" feature to depend on serde_core, improving build parallelism in cases where other dependents have enabled "serde/derive".

2.11.1 (2025-09-08)

  • Added a get_key_value_mut method to IndexMap.
  • Removed the unnecessary Ord bound on insert_sorted_by methods.
Commits

Updates serde_bytes from 0.11.17 to 0.11.19

Release notes

Sourced from serde_bytes's releases.

0.11.19

  • Fix propagation of "std" and "alloc" features to serde (#58)

0.11.18

  • Switch serde dependency to serde_core (#57)
Commits

Updates serde_with from 3.14.0 to 3.14.1

Release notes

Sourced from serde_with's releases.

serde_with v3.14.1

Fixed

  • Show macro expansion in the docs.rs generated rustdoc. Since macros are used to generate trait implementations, this is useful to understand the exact generated code.
Commits

Updates time from 0.3.43 to 0.3.44

Release notes

Sourced from time's releases.

v0.3.44

See the changelog for details.

Changelog

Sourced from time's changelog.

0.3.44 [2025-09-19]

Fixed

  • Comparisons of PrimitiveDateTime, UtcDateTime, and OffsetDateTime with differing signs (i.e. one negative and one positive year) would return the inverse result of what was expected. This was introduced in v0.3.42 and has been fixed.
  • Type inference would fail due to feature unification when wasm-bindgen enabled serde_json. This has been fixed by explicitly specifying the type in the relevant locations.
Commits

Updates serde_path_to_error from 0.1.17 to 0.1.20

Release notes

Sourced from serde_path_to_error's releases.

0.1.20

  • Support no-std (#37)

0.1.19

  • Raise serde version requirement to >=1.0.220

0.1.18

  • Switch serde dependency to serde_core (#35)
Commits

Updates proptest from 1.7.0 to 1.8.0

Commits
  • 2885bc2 new releases for proptest, proptest-macro, and state-machine
  • a85563f Merge pull request #584 from wojciech-graj/main
  • 5331517 Merge pull request #596 from alexanderkjall/fix-arithmetic-overflow
  • 157f3c0 Merge pull request #595 from ebegumisa/main
  • 02fa1fc changelog: add #595
  • 27fd76f fix for 32 bit processors
  • d1716ca Add ReferenceStateMachine arg to SystemUnderTest::teardown
  • ea4ddeb Merge pull request #594 from proptest-rs/attr-macro-preserve-arg-names
  • f80c1e6 fix shorthand struct initialization lint
  • b7590fa add new test for complex patterns
  • Additional commits viewable in compare view

Updates cc from 1.2.36 to 1.2.38

Changelog

Sourced from cc's changelog.

1.2.36 - 2025-09-05

Other

  • Regenerate windows sys bindings (#1548)
  • Update windows-bindgen requirement from 0.62 to 0.63 (#1547)
  • Add fn get_ucrt_dir for find-msvc-tools (#1546)
  • Regenerate target info (#1544)
  • fix publish.yml (#1543)
  • Replace periods with underscores as well when parsing env variables (#1541)

1.2.35 - 2025-09-01

Fixed

  • fix building for aarch64-apple-visionos-sim on nightly (#1534)
  • fix tests apple_sdkroot_wrong (#1530)

Other

  • Regenerate target info (#1536)
  • Optimize Tool::to_command (#1535)
  • Extract find-msvc-tools (#1531)
  • Add prefer_clang_cl_over_msvc (#1516)

1.2.34 - 2025-08-22

Fixed

  • add -mcpu=mvp and -mmutable-globals for wasm32v1-none (#1524)

Other

  • Optimize parse_version in find_tools.rs (#1527)
  • Fallback to manually searching for tool dir (#1526)

1.2.33 - 2025-08-15

Other

  • Regenerate target info (#1521)
  • [win][arm64ec] Add testing for Arm64EC Windows (#1512)
  • Fix parsing of nigthly targets (#1517)
  • [win][arm64ec] Fix finding assembler and setting is_arm for Arm64EC (#1511)

1.2.32 - 2025-08-08

Fixed

  • fix new clippy lint introduced in rust 1.89.0 (#1509)

... (truncated)

Commits

Updates darling from 0.20.11 to 0.21.3

Release notes

Sourced from darling's releases.

v0.21.3

  • Fix: Forward Override::<T>::from_expr to T::from_expr #371

v0.21.2

  • Add #[darling(from_expr = ...)] when deriving FromMeta to support overriding the key-value form #369
  • Keep parsing the body and type params even if there are errors from parsing attributes. #7
  • Support #[darling(with = ...)] on the generics field when deriving FromDeriveInput.
  • Return an error, rather than panicking, when doing shape validation on a union. #365

v0.21.1

  • Track all alternate field names, and show them in error message if there aren't too many. #325
  • Track all alternate values for enum variants, and show them in error messages if there aren't too many. #362

v0.21.0

  • Potentially breaking: Emit error when an attribute path is present in both attributes and forward_attrs. #336
  • Support parsing attributes which contain keywords #238
  • Add SpannedValue::into_inner #342
  • Add #[darling(derive_syn_parse)] to also impl syn::parse::Parse when deriving FromMeta #285
  • Make impl FromMeta for syn::TypePath support both quote-wrapped and bare values #351
  • Add util::PreservedStrExpr #346
  • Impl UsesTypeParams and UsesLifetimes for WithOriginal #215
  • Update error message emitted by <() as FromMeta>::from_list to allow use of () as a #[darling(flatten)] target #353
Changelog

Sourced from darling's changelog.

v0.21.3 (August 22, 2025)

  • Fix: Forward Override::<T>::from_expr to T::from_expr #371

v0.21.2 (August 14, 2025)

  • Add #[darling(from_expr = ...)] when deriving FromMeta to support overriding the key-value form #369
  • Keep parsing the body and type params even if there are errors from parsing attributes. #7
  • Support #[darling(with = ...)] on the generics field when deriving FromDeriveInput.
  • Return an error, rather than panicking, when doing shape validation on a union. #365

v0.21.1 (August 4, 2025)

  • Track all alternate field names, and show them in error message if there aren't too many. #325
  • Track all alternate values for enum variants, and show them in error messages if there aren't too many. #362

v0.21.0 (July 10, 2025)

  • Potentially breaking: Emit error when an attribute path is present in both attributes and forward_attrs. #336
  • Support parsing attributes which contain keywords #238
  • Add SpannedValue::into_inner #342
  • Add #[darling(derive_syn_parse)] to also impl syn::parse::Parse when deriving FromMeta #285
  • Make impl FromMeta for syn::TypePath support both quote-wrapped and bare values #351
  • Add util::PreservedStrExpr #346
  • Impl UsesTypeParams and UsesLifetimes for WithOriginal #215
  • Update error message emitted by <() as FromMeta>::from_list to allow use of () as a #[darling(flatten)] target #353
Commits
  • f21aa2c Bump version to 0.21.3
  • 84f6fba Directly forward non-paths in Override
  • 138c450 Override Override::from_expr (#372)
  • 65d73d1 Bump version to 0.21.2
  • 3e65b82 Update changelog
  • f9c8222 Expose from_expr option when deriving FromMeta (#370)
  • 59a46eb Don't panic if shape validation is used with a union
  • f5b7aef Change rust-version to make lock file versioning work
  • 90a3132 Fix clippy violation
  • 50a814d Enable #[darling(with = ...)] for generics field
  • Additional commits viewable in compare view

Updates darling_core from 0.20.11 to 0.21.3

Release notes

Sourced from darling_core's releases.

v0.21.3

  • Fix: Forward Override::<T>::from_expr to T::from_expr #371

v0.21.2

  • Add #[darling(from_expr = ...)] when deriving FromMeta to support overriding the key-value form #369
  • Keep parsing the body and type params even if there are errors from parsing attributes. #7
  • Support #[darling(with = ...)] on the generics field when deriving FromDeriveInput.
  • Return an error, rather than panicking, when doing shape validation on a union. #365

v0.21.1

  • Track all alternate field names, and show them in error message if there aren't too many. #325
  • Track all alternate values for enum variants, and show them in error messages if there aren't too many. #362

v0.21.0

  • Potentially breaking: Emit error when an attribute path is present in both attributes and forward_attrs. #336
  • Support parsing attributes which contain keywords #238
  • Add SpannedValue::into_inner #342
  • Add #[darling(derive_syn_parse)] to also impl syn::parse::Parse when deriving FromMeta #285
  • Make impl FromMeta for syn::TypePath support both quote-wrapped and bare values #351
  • Add util::PreservedStrExpr #346
  • Impl UsesTypeParams and UsesLifetimes for WithOriginal #215
  • Update error message emitted by <() as FromMeta>::from_list to allow use of () as a #[darling(flatten)] target #353
Changelog

Sourced from darling_core's changelog.

v0.21.3 (August 22, 2025)

  • Fix: Forward Override::<T>::from_expr to T::from_expr #371

v0.21.2 (August 14, 2025)

  • Add #[darling(from_expr = ...)] when deriving FromMeta to support overriding the key-value form #369
  • Keep parsing the body and type params even if there are errors from parsing attributes. #7
  • Support #[darling(with = ...)] on the generics field when deriving FromDeriveInput.
  • Return an error, rather than panicking, when doing shape validation on a union. #365

v0.21.1 (August 4, 2025)

  • Track all alternate field names, and show them in error message if there aren't too many. #325
  • Track all alternate values for enum variants, and show them in error messages if there aren't too many. #362

v0.21.0 (July 10, 2025)

  • Potentially breaking: Emit error when an attribute path is present in both attributes and forward_attrs. #336
  • Support parsing attributes which contain keywords #238
  • Add SpannedValue::into_inner #342
  • Add #[darling(derive_syn_parse)] to also impl syn::parse::Parse when deriving FromMeta #285
  • Make impl FromMeta for syn::TypePath support both quote-wrapped and bare values #351
  • Add util::PreservedStrExpr #346
  • Impl UsesTypeParams and UsesLifetimes for WithOriginal #215
  • Update error message emitted by <() as FromMeta>::from_list to allow use of () as a #[darling(flatten)] target #353
Commits
  • f21aa2c Bump version to 0.21.3
  • 84f6fba Directly forward non-paths in Override
  • 138c450 Override Override::from_expr (#372)
  • 65d73d1 Bump version to 0.21.2
  • 3e65b82 Update changelog
  • f9c8222 Expose from_expr option when deriving FromMeta (#370)
  • 59a46eb Don't panic if shape validation is used with a union
  • f5b7aef Change rust-version to make lock file versioning work
  • 90a3132 Fix clippy violation
  • 50a814d Enable #[darling(with = ...)] for generics field
  • Additional commits viewable in compare view

Updates darling_macro from 0.20.11 to 0.21.3

Release notes

Sourced from darling_macro's releases.

v0.21.3

  • Fix: Forward Override::<T>::from_expr to T::from_expr #371

v0.21.2

  • Add #[darling(from_expr = ...)] when deriving FromMeta to support overriding the key-value form #369
  • Keep parsing the body and type params even if there are errors from parsing attributes. #7
  • Support #[darling(with = ...)] on the generics field when deriving FromDeriveInput.
  • Return an error, rather than panicking, when doing shape validation on a union. #365

v0.21.1

  • Track all alternate field names, and show them in error message if there aren't too many. #325
  • Track all alternate values for enum variants, and show them in error messages if there aren't too many. #362

v0.21.0

  • Potentially breaking: Emit error when an attribute path is present in both attributes and forward_attrs. #336
  • Support parsing attributes which contain keywords #238
  • Add SpannedValue::into_inner #342
  • Add #[darling(derive_syn_parse)] to also impl syn::parse::Parse when deriving FromMeta #285
  • Make impl FromMeta for syn::TypePath support both quote-wrapped and bare values #351
  • Add util::PreservedStrExpr #346
  • Impl UsesTypeParams and UsesLifetimes for WithOriginal #215
  • Update error message emitted by <() as FromMeta>::from_list to allow use of () as a #[darling(flatten)] target #353
Changelog

Sourced from darling_macro's changelog.

v0.21.3 (August 22, 2025)

  • Fix: Forward Override::<T>::from_expr to T::from_expr #371

v0.21.2 (August 14, 2025)

  • Add #[darling(from_expr = ...)] when deriving FromMeta to support overriding the key-value form #369
  • Keep parsing the body and type params even if there are errors from parsing attributes. #7
  • Support #[darling(with = ...)] on the generics field when deriving FromDeriveInput.
  • Return an error, rather than panicking, when doing shape validation on a union. #365

v0.21.1 (August 4, 2025)

  • Track all alternate field names, and show them in error message if there aren't too many. #325
  • Track all alternate values for enum variants, and show them in error messages if there aren't too many. #362

v0.21.0 (July 10, 2025)

  • Potentially breaking: Emit error when an attribute path is present in both attributes and forward_attrs. #336
  • Support parsing attributes which contain keywords #238
  • Add SpannedValue::into_inner #342
  • Add #[darling(derive_syn_parse)] to also impl syn::parse::Parse when deriving FromMeta #285
  • Make impl FromMeta for syn::TypePath support both quote-wrapped and bare values #351
  • Add util::PreservedStrExpr #346
  • Impl UsesTypeParams and UsesLifetimes for WithOriginal #215
  • Update error message emitted by <() as FromMeta>::from_list to allow use of () as a #[darling(flatten)] target #353
Commits
  • f21aa2c Bump version to 0.21.3
  • 84f6fba Directly forward non-paths in Override
  • 138c450 Override Override::from_expr (#372)
  • 65d73d1 Bump version to 0.21.2
  • 3e65b82 Update changelog
  • f9c8222 Expose from_expr option when deriving FromMeta (#370)
  • 59a46eb Don't panic if shape validation is used with a union
  • f5b7aef Change rust-version to make lock file versioning work
  • 90a3132 Fix clippy violation
  • 50a814d Enable #[darling(with = ...)] for generics field
  • Additional commits viewable in compare view

Updates errno from 0.3.13 to 0.3.14

Changelog

Sourced from errno's changelog.

[0.3.14] - 2025-09-08

  • Update windows-sys requirement from >=0.52, <=0.59 to >=0.52, <0.62 #117
Commits

Updates find-msvc-tools from 0.1.1 to 0.1.2

Release notes

Sourced from find-msvc-tools's releases.

find-msvc-tools-v0.1.2

Other

  • [win] Search the Windows SDK for tools as well (#1553)
Commits

Updates iana-time-zone from 0.1.63 to 0.1.64

Changelog

Sourced from iana-time-zone's changelog.

[0.1.64] - 2025-09-12

Changed

  • Bump windows-core to 0.56-0.62 range (#177
Commits
  • 2a3665e Bump version number to 0.1.64
  • d4ea1ec Merge pull request #177 from git-staus/main
  • 7629338 Bump the windows-core version
  • fc6ed13 Merge pull request #175 from strawlab/dependabot/github_actions/actions/setup...
  • c4d1a1e Bump actions/setup-node from 4 to 5
  • 165d4f1 Bump actions/checkout from 4 to 5
  • 0e0a0d0 Merge pull request #169 from strawlab/dependabot/github_actions/astral-sh/set...
  • 44f371e Bump astral-sh/setup-uv from 5 to 6
  • 6d3fe92 clippy fix (#168)
  • See full diff in compare view

Updates rustix from 1.0.8 to 1.1.2

Commits
  • 5245b81 chore: Release rustix version 1.1.2
  • 0a10015 Fix compilation on Android. (#1514)
  • 0f3b6ca build: update duplicate linux-raw-sys dependency to match existing (#1512)
  • 5dc84d4 chore: Release rustix version 1.1.1
  • 86dacac Fix the test_is_io_flusher test. (#1510)
  • 8b203f5 set_thread_res_xid: -1 as None (#1459)
  • 7ed8ee9 Add ip_mtu_discover and ipv6_mtu_discover socket options (#1466)
  • 7798f03 libc: add MS_NOSYMFOLL...

    Description has been truncated

Bumps the rust-dependencies group with 25 updates:

| Package | From | To |
| --- | --- | --- |
| [chrono](https://github.com/chronotope/chrono) | `0.4.41` | `0.4.42` |
| [serde](https://github.com/serde-rs/serde) | `1.0.219` | `1.0.226` |
| [serde_json](https://github.com/serde-rs/json) | `1.0.143` | `1.0.145` |
| [indexmap](https://github.com/indexmap-rs/indexmap) | `2.11.0` | `2.11.4` |
| [serde_bytes](https://github.com/serde-rs/bytes) | `0.11.17` | `0.11.19` |
| [serde_with](https://github.com/jonasbb/serde_with) | `3.14.0` | `3.14.1` |
| [time](https://github.com/time-rs/time) | `0.3.43` | `0.3.44` |
| [serde_path_to_error](https://github.com/dtolnay/path-to-error) | `0.1.17` | `0.1.20` |
| [proptest](https://github.com/proptest-rs/proptest) | `1.7.0` | `1.8.0` |
| [cc](https://github.com/rust-lang/cc-rs) | `1.2.36` | `1.2.38` |
| [darling](https://github.com/TedDriggs/darling) | `0.20.11` | `0.21.3` |
| [darling_core](https://github.com/TedDriggs/darling) | `0.20.11` | `0.21.3` |
| [darling_macro](https://github.com/TedDriggs/darling) | `0.20.11` | `0.21.3` |
| [errno](https://github.com/lambda-fairy/rust-errno) | `0.3.13` | `0.3.14` |
| [find-msvc-tools](https://github.com/rust-lang/cc-rs) | `0.1.1` | `0.1.2` |
| [iana-time-zone](https://github.com/strawlab/iana-time-zone) | `0.1.63` | `0.1.64` |
| [rustix](https://github.com/bytecodealliance/rustix) | `1.0.8` | `1.1.2` |
| [serde_derive](https://github.com/serde-rs/serde) | `1.0.219` | `1.0.226` |
| [serde_with_macros](https://github.com/jonasbb/serde_with) | `3.14.0` | `3.14.1` |
| [tempfile](https://github.com/Stebalien/tempfile) | `3.21.0` | `3.22.0` |
| [unicode-ident](https://github.com/dtolnay/unicode-ident) | `1.0.18` | `1.0.19` |
| [windows-core](https://github.com/microsoft/windows-rs) | `0.61.2` | `0.62.0` |
| [windows-result](https://github.com/microsoft/windows-rs) | `0.3.4` | `0.4.0` |
| [windows-strings](https://github.com/microsoft/windows-rs) | `0.4.2` | `0.5.0` |
| [windows-sys](https://github.com/microsoft/windows-rs) | `0.60.2` | `0.61.0` |


Updates `chrono` from 0.4.41 to 0.4.42
- [Release notes](https://github.com/chronotope/chrono/releases)
- [Changelog](https://github.com/chronotope/chrono/blob/main/CHANGELOG.md)
- [Commits](chronotope/chrono@v0.4.41...v0.4.42)

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

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

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

Updates `serde_bytes` from 0.11.17 to 0.11.19
- [Release notes](https://github.com/serde-rs/bytes/releases)
- [Commits](serde-rs/bytes@0.11.17...0.11.19)

Updates `serde_with` from 3.14.0 to 3.14.1
- [Release notes](https://github.com/jonasbb/serde_with/releases)
- [Commits](jonasbb/serde_with@v3.14.0...v3.14.1)

Updates `time` from 0.3.43 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.43...v0.3.44)

Updates `serde_path_to_error` from 0.1.17 to 0.1.20
- [Release notes](https://github.com/dtolnay/path-to-error/releases)
- [Commits](dtolnay/path-to-error@0.1.17...0.1.20)

Updates `proptest` from 1.7.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.7.0...v1.8.0)

Updates `cc` from 1.2.36 to 1.2.38
- [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.36...cc-v1.2.38)

Updates `darling` from 0.20.11 to 0.21.3
- [Release notes](https://github.com/TedDriggs/darling/releases)
- [Changelog](https://github.com/TedDriggs/darling/blob/master/CHANGELOG.md)
- [Commits](TedDriggs/darling@v0.20.11...v0.21.3)

Updates `darling_core` from 0.20.11 to 0.21.3
- [Release notes](https://github.com/TedDriggs/darling/releases)
- [Changelog](https://github.com/TedDriggs/darling/blob/master/CHANGELOG.md)
- [Commits](TedDriggs/darling@v0.20.11...v0.21.3)

Updates `darling_macro` from 0.20.11 to 0.21.3
- [Release notes](https://github.com/TedDriggs/darling/releases)
- [Changelog](https://github.com/TedDriggs/darling/blob/master/CHANGELOG.md)
- [Commits](TedDriggs/darling@v0.20.11...v0.21.3)

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

Updates `find-msvc-tools` from 0.1.1 to 0.1.2
- [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@find-msvc-tools-v0.1.1...find-msvc-tools-v0.1.2)

Updates `iana-time-zone` from 0.1.63 to 0.1.64
- [Changelog](https://github.com/strawlab/iana-time-zone/blob/main/CHANGELOG.md)
- [Commits](strawlab/iana-time-zone@v0.1.63...v0.1.64)

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

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

Updates `serde_with_macros` from 3.14.0 to 3.14.1
- [Release notes](https://github.com/jonasbb/serde_with/releases)
- [Commits](jonasbb/serde_with@v3.14.0...v3.14.1)

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

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

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

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

Updates `windows-strings` from 0.4.2 to 0.5.0
- [Release notes](https://github.com/microsoft/windows-rs/releases)
- [Changelog](https://github.com/microsoft/windows-rs/blob/0.5.0/docs/changelog.md)
- [Commits](https://github.com/microsoft/windows-rs/commits/0.5.0)

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

---
updated-dependencies:
- dependency-name: chrono
  dependency-version: 0.4.42
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: rust-dependencies
- dependency-name: serde
  dependency-version: 1.0.226
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: rust-dependencies
- dependency-name: serde_json
  dependency-version: 1.0.145
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: rust-dependencies
- dependency-name: indexmap
  dependency-version: 2.11.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: rust-dependencies
- dependency-name: serde_bytes
  dependency-version: 0.11.19
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: rust-dependencies
- dependency-name: serde_with
  dependency-version: 3.14.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: rust-dependencies
- dependency-name: time
  dependency-version: 0.3.44
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: rust-dependencies
- dependency-name: serde_path_to_error
  dependency-version: 0.1.20
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: rust-dependencies
- dependency-name: proptest
  dependency-version: 1.8.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: rust-dependencies
- dependency-name: cc
  dependency-version: 1.2.38
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: rust-dependencies
- dependency-name: darling
  dependency-version: 0.21.3
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: rust-dependencies
- dependency-name: darling_core
  dependency-version: 0.21.3
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: rust-dependencies
- dependency-name: darling_macro
  dependency-version: 0.21.3
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: rust-dependencies
- dependency-name: errno
  dependency-version: 0.3.14
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: rust-dependencies
- dependency-name: find-msvc-tools
  dependency-version: 0.1.2
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: rust-dependencies
- dependency-name: iana-time-zone
  dependency-version: 0.1.64
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: rust-dependencies
- dependency-name: rustix
  dependency-version: 1.1.2
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: rust-dependencies
- dependency-name: serde_derive
  dependency-version: 1.0.226
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: rust-dependencies
- dependency-name: serde_with_macros
  dependency-version: 3.14.1
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: rust-dependencies
- dependency-name: tempfile
  dependency-version: 3.22.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: rust-dependencies
- dependency-name: unicode-ident
  dependency-version: 1.0.19
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: rust-dependencies
- dependency-name: windows-core
  dependency-version: 0.62.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: rust-dependencies
- dependency-name: windows-result
  dependency-version: 0.4.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: rust-dependencies
- dependency-name: windows-strings
  dependency-version: 0.5.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: rust-dependencies
- dependency-name: windows-sys
  dependency-version: 0.61.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: rust-dependencies
...

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 Sep 22, 2025
@dependabot dependabot bot requested a review from a team as a code owner September 22, 2025 04:33
@dependabot dependabot bot requested a review from isabelatkinson September 22, 2025 04:33
@dependabot dependabot bot added dependencies Pull requests that update a dependency file rust Pull requests that update rust code labels Sep 22, 2025
@isabelatkinson isabelatkinson merged commit 0ca9ddc into main Sep 22, 2025
12 checks passed
@dependabot dependabot bot deleted the dependabot/cargo/rust-dependencies-5a9fb9a907 branch September 22, 2025 17:06
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