APatch icon indicating copy to clipboard operation
APatch copied to clipboard

build(deps): bump the rust-dependencies group across 1 directory with 8 updates

Open dependabot[bot] opened this issue 8 months ago • 0 comments

Bumps the rust-dependencies group with 6 updates in the /apd directory:

Package From To
chrono 0.4.40 0.4.41
cc 1.2.19 1.2.20
jiff 0.2.8 0.2.10
libm 0.2.11 0.2.13
syn 2.0.100 2.0.101
zerocopy 0.8.24 0.8.25

Updates chrono from 0.4.40 to 0.4.41

Release notes

Sourced from chrono's releases.

v0.4.41

What's Changed

Commits
  • d1de1d9 Bump version to 0.4.41
  • e2bd1d1 Add support for lenient format strings (#1693)
  • 2c95b0a Tweak expression to avoid repetition
  • ebeef99 TimeZone::from_posix_tz: Treat empty TZ variable as UTC
  • dc068f0 Tweak style on NaiveWeek fixes
  • b267a4f Implemented consistent Hash and Eq trait for NaiveWeek
  • 7c0bd13 Apply suggestions from clippy 1.86
  • 104cdc7 Bump MSRV to 1.62
  • 6a85301 Upgrade to windows-bindgen 0.61
  • 265c79b Tweak WeekdaySet method order
  • Additional commits viewable in compare view

Updates cc from 1.2.19 to 1.2.20

Release notes

Sourced from cc's releases.

cc-v1.2.20

Other

  • Regenerate target info (#1461)
  • Fix parser.rs on latest rustc nightly (#1459)
Changelog

Sourced from cc's changelog.

1.2.20 - 2025-04-25

Other

  • Regenerate target info (#1461)
  • Fix parser.rs on latest rustc nightly (#1459)
Commits

Updates jiff from 0.2.8 to 0.2.10

Changelog

Sourced from jiff's changelog.

0.2.10 (2025-04-21)

This release includes a bug fix for parsing Tuesday when using %A via Jiff's strptime APIs. Specifically, it would recognize Tueday instead of Tuesday.

Bug fixes:

  • #333: Fix typo in strptime parsing from Tueday to Tuesday.

0.2.9 (2025-04-19)

This release includes a bug fix that, in debug mode, could result in datetime types having different hashes for the same value. This could cause problems, for example, if you are using datetimes as keys in a hash map. This problem didn't exist when Jiff was compiled in release mode.

This release also improves the panic message shown when the js feature isn't enabled and the current time is requested on wasm32-unknown-unknown targets.

Enhancements:

  • #296: Provide a better panic message when Zoned::now() fails on WASM.

Bug fixes:

  • #330: Fix bug where Hash on datetime types could yield different hash values for the same underlying date/time.
Commits

Updates jiff-static from 0.2.8 to 0.2.10

Changelog

Sourced from jiff-static's changelog.

0.2.10 (2025-04-21)

This release includes a bug fix for parsing Tuesday when using %A via Jiff's strptime APIs. Specifically, it would recognize Tueday instead of Tuesday.

Bug fixes:

  • #333: Fix typo in strptime parsing from Tueday to Tuesday.

0.2.9 (2025-04-19)

This release includes a bug fix that, in debug mode, could result in datetime types having different hashes for the same value. This could cause problems, for example, if you are using datetimes as keys in a hash map. This problem didn't exist when Jiff was compiled in release mode.

This release also improves the panic message shown when the js feature isn't enabled and the current time is requested on wasm32-unknown-unknown targets.

Enhancements:

  • #296: Provide a better panic message when Zoned::now() fails on WASM.

Bug fixes:

  • #330: Fix bug where Hash on datetime types could yield different hash values for the same underlying date/time.
Commits

Updates libm from 0.2.11 to 0.2.13

Release notes

Sourced from libm's releases.

libm-v0.2.13

Fixed

  • Switch back to workspace resolver v2 to unbreak builds without the 2024 edition

libm-v0.2.12

  • Mark generic functions #[inline]
  • Combine the source files for fmod
  • Ensure all public functions are marked no_panic
  • Add assembly version of simple operations on aarch64
  • Add roundeven{,f,f16,f128}
  • Add fminimum, fmaximum, fminimum_num, and fmaximum_num
  • Eliminate the use of force_eval! in ceil, floor, and trunc
  • Port the CORE-MATH version of cbrt
  • Add fmaf128
  • fma: Ensure zero has the correct sign
  • Add scalbnf16, scalbnf128, ldexpf16, and ldexpf128
  • Specify license as just MIT
  • Add fmodf128
  • Add fmodf16 using the generic implementation
  • Add fminf16, fmaxf16, fminf128, and fmaxf128
  • Add roundf16 and roundf128
  • Add rintf16 and rintf128
  • Add floorf16 and floorf128
  • Add ceilf16 and ceilf128
  • Add sqrtf16 and sqrtf128
  • Simplify and optimize fdim (#442)
  • Add fdimf16 and fdimf128
  • Add truncf16 and truncf128
  • Add fabsf16, fabsf128, copysignf16, and copysignf128
  • Move some numeric trait logic to default implementations
  • Add some more basic docstrings (#352)
  • Add support for loongarch64-unknown-linux-gnu
  • Add an "arch" Cargo feature that is on by default
  • Rename the special_case module to precision and move default ULP
  • Move the existing "unstable" feature to "unstable-intrinsics"

There are a number of things that changed internally, see the git log for a full list of changes.

Commits
  • 0bdef05 chore: Release libm v0.2.13
  • dfd553a fix: Switch to resolver v2
  • 313e3ee chore: Combine CHANGELOG files for compiler-builtins
  • fe23e61 chore: release builtins 0.1.156 and libm 0.2.12
  • 2dc292b Reimplement the generic fmod
  • 4f4dbe8 Rename the public-test-deps feature to unstable-public-internals
  • 767597f ci: Fix extensive tests
  • b5f8003 Fix compiler-builtins publish
  • 33dedd2 Update README and CONTRIBUTING for the new repository layout
  • 07521a6 Move README.md to compiler-builtins, CONTRIBUTING.md to root
  • Additional commits viewable in compare view

Updates syn from 2.0.100 to 2.0.101

Release notes

Sourced from syn's releases.

2.0.101

  • Improve TypeGenerics::as_turbofish to return longer-lived return value (#1861)
Commits
  • 58336a3 Release 2.0.101
  • f1612cc Merge pull request #1861 from JakobDegen/turbofish
  • d04eea1 Fix lifetime on as_turbofish
  • 432b303 Resolve renamed_and_removed_lints warning about match_on_vec_items
  • 1353d60 Update test suite to nightly-2025-04-08
  • 3980ff2 Improve wording of comment in advance_to implementation
  • 8328b52 Update test suite to nightly-2025-04-05
  • 1d2e2be Update test suite to nightly-2025-04-03
  • 2400946 Update test suite to nightly-2025-04-02
  • 114a629 Update test suite to nightly-2025-03-27
  • Additional commits viewable in compare view

Updates zerocopy from 0.8.24 to 0.8.25

Release notes

Sourced from zerocopy's releases.

v0.8.25

What's Changed

Full Changelog: https://github.com/google/zerocopy/compare/v0.8.24...v0.8.25

v0.8.25-alpha.3

... (truncated)

Commits

Updates zerocopy-derive from 0.8.24 to 0.8.25

Release notes

Sourced from zerocopy-derive's releases.

v0.8.25

What's Changed

Full Changelog: https://github.com/google/zerocopy/compare/v0.8.24...v0.8.25

v0.8.25-alpha.3

... (truncated)

Commits

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

dependabot[bot] avatar Apr 29 '25 19:04 dependabot[bot]