Skip to content

Conversation

@dependabot
Copy link
Contributor

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

Bumps the pointercrate group with 22 updates:

Package From To
serde 1.0.219 1.0.221
chrono 0.4.41 0.4.42
serde_json 1.0.143 1.0.145
aws-lc-rs 1.13.3 1.14.0
aws-lc-sys 0.30.0 0.31.0
bindgen 0.69.5 0.72.1
cc 1.2.36 1.2.37
errno 0.3.13 0.3.14
iana-time-zone 0.1.63 0.1.64
indexmap 2.11.0 2.11.1
itertools 0.12.1 0.13.0
libredox 0.1.9 0.1.10
linux-raw-sys 0.4.15 0.9.4
rustc-hash 1.1.0 2.1.1
rustix 0.38.44 1.0.8
rustls-webpki 0.103.4 0.103.5
schannel 0.1.27 0.1.28
security-framework-sys 2.14.0 2.15.0
serde_derive 1.0.219 1.0.221
tempfile 3.21.0 3.22.0
unicode-ident 1.0.18 1.0.19
windows-core 0.61.2 0.62.0

Updates serde from 1.0.219 to 1.0.221

Release notes

Sourced from serde's releases.

v1.0.221

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

v1.0.220

Commits
  • ff3aee4 Release 1.0.221
  • 10bcfc0 Merge pull request #2975 from dtolnay/integer128
  • 2f03899 Deprecate serde_if_integer128 macro
  • 3bea3b6 Move serde_if_integer128 macro to serde
  • 85bf29c Merge pull request #2973 from dtolnay/timings
  • 900c922 Illustrate build timings in serde_core readme
  • 9cf3f2e Merge pull request #2974 from dtolnay/patchserdecore
  • 1ffbeb9 Patch serde_core at workspace level
  • 1051c5e Enforce trybuild >= 1.0.108
  • be255d6 Release 1.0.220
  • Additional commits viewable in compare view

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_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 aws-lc-rs from 1.13.3 to 1.14.0

Release notes

Sourced from aws-lc-rs's releases.

aws-lc-rs v1.14.0

What's Changed

Build Improvements

Issues Being Resolved

  • Feature Request: RandomizedNonceKey for AES-GCM-SIV -- aws/aws-lc-rs#842
  • Add way to pre-parse signature keys (i.e. turn signature::UnparsedPublicKey to PublicKey) -- aws/aws-lc-rs#849
  • Build failed for x86_64-pc-windows-gnu target regardless of AWS_LC_SYS_PREBUILT_NASM=1 -- aws/aws-lc-rs#850

Other Merged PRs

New Contributors

Full Changelog: aws/aws-lc-rs@v1.13.3...v1.14.0

Commits

Updates aws-lc-sys from 0.30.0 to 0.31.0

Commits

Updates bindgen from 0.69.5 to 0.72.1

Release notes

Sourced from bindgen's releases.

v0.72.1

This is just 0.72.0 with a fix for a breaking change in clang (see #3264 and related).

Full Changelog: rust-lang/rust-bindgen@v0.72.0...v0.72.1

v0.72.0

Added

  • Report enums in ParseCallbacks.
  • Refactor item_name method to use ItemInfo struct.
  • Add callback to modify contents of macro
  • Discovery callbacks for functions and methods.
  • Options to generate uncallable C++ functions.
  • Provide option to get real virtual fn receiver.

Changed

  • Generate bindings compatible with current rustc version by default.

Removed

  • Remove unused which-rustfmt feature
  • Remove warning for opaque forward declarations

Fixed

  • More sophisticated handling of the triple in rust_to_clang_target
  • Rename *-apple-ios-sim to ...simulator
  • Fix OpenCL vectors that use "ext_vector_type".
  • Fix union layout when it contains 0 sized array.
  • Avoid crashing on variadic unions without layout information.
  • Distinguish char16_t.
  • Fix bugs in --clang-macro-fallback
  • Add missed unsafe in the raw_set_bit function
  • Use link_name for dynamic library loading
  • Add "gen" to list of rust keywords in 'rust_mangle'
  • Use appropriate rustfmt --format ... param

Full Changelog: rust-lang/rust-bindgen@v0.71.1...v0.72.0

v0.71.1

We are happy to announce a new release of bindgen 🎉

  • [GitHub]
  • [crates.io]
  • [Users Guide][guide]
  • [API Documentation][docs]

Changelog

Fixed

... (truncated)

Changelog

Sourced from bindgen's changelog.

0.72.1 (2025-08-31)

Added

Changed

Removed

Fixed

  • Fixed a bad interaction with upcoming clang 22 (#3278).

Security

0.72.0 (2025-06-08)

Added

  • Report enums in ParseCallbacks.
  • Refactor item_name method to use ItemInfo struct.
  • Add callback to modify contents of macro
  • Discovery callbacks for functions and methods.
  • Options to generate uncallable C++ functions.
  • Provide option to get real virtual fn receiver.

Changed

  • Generate bindings compatible with current rustc version by default.

Removed

  • Remove unused which-rustfmt feature
  • Remove warning for opaque forward declarations

Fixed

  • More sophisticated handling of the triple in rust_to_clang_target
  • Rename *-apple-ios-sim to ...simulator
  • Fix OpenCL vectors that use "ext_vector_type".
  • Fix union layout when it contains 0 sized array.
  • Avoid crashing on variadic unions without layout information.
  • Distinguish char16_t.
  • Fix bugs in --clang-macro-fallback
  • Add missed unsafe in the raw_set_bit function
  • Use link_name for dynamic library loading
  • Add "gen" to list of rust keywords in 'rust_mangle'
  • Use appropriate rustfmt --format ... param

v0.71.1 (2024-12-09)

Fixed

  • Fix --version and --generate-shell-completions (#3040)

0.71.0 (2024-12-06)

Added

  • Add the ParseCallbacks::new_item_found callback to expose the original and final name of structs, unions and enums (#2658).
  • Add the field_type_name field to FieldInfo to expose the name of the type of a field (#2863)

... (truncated)

Commits
  • d874de8 chore: Release
  • 173a6e6 Update changelog.
  • 2e06749 clang: Push the fix for #3277 into Type::declaration.
  • 58a8710 Get the type's definition in CompInfo::from_ty
  • d0e7d6b chore: Release
  • e7f0b9d Update changelog.
  • 2882af2 Refactor item_name method to use ItemInfo struct
  • e2940cd chore: Fix some warnings with latest stable.
  • 5d7f684 codegen: Avoid crashing on variadic unions without layout information.
  • 2613129 Remove unused which-rustfmt feature
  • Additional commits viewable in compare view

Updates cc from 1.2.36 to 1.2.37

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 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 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 indexmap from 2.11.0 to 2.11.1

Changelog

Sourced from indexmap's changelog.

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
  • f33f4d9 Merge pull request #413 from cuviper/release-2.11.1
  • 4c680a7 Release 2.11.1
  • b700522 Merge pull request #411 from ya7010/add_get_key_value_mut
  • 01f3ef0 Make IndexMap::get_* docs more consistent
  • cd4c1a5 feat: add IndexMap::get_key_value_mut
  • 48a98b7 Merge pull request #412 from andymandias/relax-trait-bounds
  • 2be4487 Remove Ord trait bound on insert_sorted_by functions.
  • See full diff in compare view

Updates itertools from 0.12.1 to 0.13.0

Changelog

Sourced from itertools's changelog.

0.13.0

Breaking

  • Removed implementation of DoubleEndedIterator for ConsTuples (#853)
  • Made MultiProduct fused and fixed on an empty iterator (#835, #834)
  • Changed iproduct! to return tuples for maxi one iterator too (#870)
  • Changed PutBack::put_back to return the old value (#880)
  • Removed deprecated repeat_call, Itertools::{foreach, step, map_results, fold_results} (#878)
  • Removed TakeWhileInclusive::new (#912)

Added

  • Added Itertools::{smallest_by, smallest_by_key, largest, largest_by, largest_by_key} (#654, #885)
  • Added Itertools::tail (#899)
  • Implemented DoubleEndedIterator for ProcessResults (#910)
  • Implemented Debug for FormatWith (#931)
  • Added Itertools::get (#891)

Changed

  • Deprecated Itertools::group_by (renamed chunk_by) (#866, #879)
  • Deprecated unfold (use std::iter::from_fn instead) (#871)
  • Optimized GroupingMapBy (#873, #876)
  • Relaxed Fn bounds to FnMut in diff_with, Itertools::into_group_map_by (#886)
  • Relaxed Debug/Clone bounds for MapInto (#889)
  • Documented the use_alloc feature (#887)
  • Optimized Itertools::set_from (#888)
  • Removed badges in README.md (#890)
  • Added "no-std" categories in Cargo.toml (#894)
  • Fixed Itertools::k_smallest on short unfused iterators (#900)
  • Deprecated Itertools::tree_fold1 (renamed tree_reduce) (#895)
  • Deprecated GroupingMap::fold_first (renamed reduce) (#902)
  • Fixed Itertools::k_smallest(0) to consume the iterator, optimized Itertools::k_smallest(1) (#909)
  • Specialized Combinations::nth (#914)
  • Specialized MergeBy::fold (#920)
  • Specialized CombinationsWithReplacement::nth (#923)
  • Specialized FlattenOk::{fold, rfold} (#927)
  • Specialized Powerset::nth (#924)
  • Documentation fixes (#882, #936)
  • Fixed assert_equal for iterators longer than i32::MAX (#932)
  • Updated the must_use message of non-lazy KMergeBy and TupleCombinations (#939)

Notable Internal Changes

  • Tested iterator laziness (#792)
  • Created CONTRIBUTING.md (#767)
Commits
  • d5084d1 Prepare v0.13.0 release (#937)
  • d7c99d5 TupleCombinations is not lazy but must be used nonetheless
  • 074c7fc KMergeBy is not lazy but must be used nonetheless
  • 2ad9e07 assert_equal: fix clippy::default_numeric_fallback
  • 0d4efc8 Remove free function get
  • 05cc0ee get(s..=usize::MAX) should be fine when s != 0
  • 3c16f14 get: when is it ESI and/or DEI
  • 4dd6ba0 get: panics if the range includes usize::MAX
  • 7a9ce56 get(r: Range) as Skip\<Take>
  • f676f2f Remove the unspecified check about .get(exhausted_range_inclusive)
  • Additional commits viewable in compare view

Updates libredox from 0.1.9 to 0.1.10

Updates linux-raw-sys from 0.4.15 to 0.9.4

Commits
  • d7d733c chore: Release linux-raw-sys version 0.9.4
  • 61eab2a Add c_char definition for MIPS R6 (#154)
  • 21a3b3b chore: Release linux-raw-sys version 0.9.3
  • aa9846b feat: add types from net_tstamp.h, e.g. sock_txtime (#153)
  • f1149d9 chore: Release linux-raw-sys version 0.9.2
  • d894c10 Make s390x's EM_CURRENT pub. (#152)
  • b9014b1 chore: Release linux-raw-sys version 0.9.1
  • afc1516 Define EM_CURRENT on powerpc. (#151)
  • e6eaa0f chore: Release linux-raw-sys version 0.9.0
  • 9ff2ba7 Fix ioctl code generation for 32-bit powerpc. (#150)
  • Additional commits viewable in compare view

Updates rustc-hash from 1.1.0 to 2.1.1

Changelog

Sourced from rustc-hash's changelog.

2.1.1

  • Change the internal algorithm to better accomodate large hashmaps. This mitigates a regression with 2.0 in rustc. See PR#55 for more details on the change (this PR was not merged). This problem might be improved with changes to hashbrown in the future.

2.1.0

  • Implement Clone for FxRandomState
  • Implement Clone for FxSeededState
  • Use SPDX license expression in license field

2.0.0

  • Replace hash with faster and better finalized hash. This replaces the previous "fxhash" algorithm originating in Firefox with a custom hasher designed and implemented by Orson Peters (@orlp). It was measured to have slightly better performance for rustc, has better theoretical properties and also includes a significantly better string hasher.
  • Fix no_std builds

1.2.0 (YANKED)

Note: This version has been yanked due to issues with the no_std feature!

  • Add a FxBuildHasher unit struct
  • Improve documentation
  • Add seed API for supplying custom seeds other than 0
  • Add FxRandomState based on rand (behind the rand feature) for random seeds
  • Make many functions const fn
  • Implement Clone for FxHasher struct
Commits

Updates rustix from 0.38.44 to 1.0.8

Release notes

Sourced from rustix's releases.

1.0.0

This release introduces the Buffer trait, which is used in read, pread, recv, recvfrom, getrandom, readlinkat_raw, epoll::wait, kevent, port::getn, getxattr, lgetxattr, fgetxattr, listxattr, llistxattr, and flistxattr, and adds support for reading data into uninitialized buffers, as well as safely reading data into the spare capacity of Vecs.

This release also simplifies the way network addresses are handled. Instead of having separate functions with _v4, _v6, _unix, _xdp, and now _netlink suffixes, rustix now uses a SocketAddrArg trait so that functions such as bind, connect, sendto, and sendmsg_addr can accept any type of address, and are easier to extend to new address types in the future.

And, this release simplifies the ioctl API, replacing opcode wrapper types with const generics.

This updates several APIs to add Linux 6.13 features, and raw linux-raw-sys types are no longer exposed in the public API, so it should be easier to stay up to date with new Linux releases.

And many more new features, bug fixes, and cleanups. See the CHANGES.md file for the full list of breaking changes.

Commits
  • 5b104ec chore: Release rustix version 1.0.8
  • 77151a7 Deprecate unshare and add unshare_unsafe. (#1482)
  • 71ecca8 Don't let a mismatch AT_SYSINFO_EHDR image preclude use of AUX values. (#1484)
  • b16b457 Use new hints.mostly-unused (#1491)
  • 12aa086 fixed a typo in a link in the docs (#1487)
  • eec86ef Remove the compiler-builtins optional dependency. (#1483)
  • 1507cbd Pin CI to Rust nightly-2025-06-23. (#1486)
  • 25ebd26 Expand the windows-sys dependency to include 0.60.0. (#1476)
  • 091d3d7 Temporarily disable the do_test_unix_msg tests on FreeBSD. (#1477)
  • 6883580 chore: Release rustix version 1.0.7
  • Additional commits viewable in compare view

Updates rustls-webpki from 0.103.4 to 0.103.5

Release notes

Sourced from rustls-webpki's releases.

0.103.5

  • New feature: support verification of P256+SHA512 and P384-SHA512 ECDSA signatures with aws-lc-rs. This is not a recommended combination, but such signatures exist in the wild.

What's Changed

Full Changelog: rustls/webpki@v/0.103.4...v/0.103.5

Commits
  • 064a68b Prepare 0.103.5
  • f6fbb2a Support P256+SHA512 and P384+SHA512
  • 41cc1fc Take aws-lc-rs 1.14.0
  • ac0500d build(deps): bump actions/setup-python from 5 to 6
  • 57fa975 Extract trait for ExtendedKeyUsage validation
  • 6700208 Move ExtendedKeyUsage::check() to KeyUsage
  • 260cb69 Extract KeyPurposeId iteration from ExtendedKeyUsage::check()
  • 3ed145a Simplify KeyPurposeId comparison
  • b20354a Clarify docs on Cert methods
  • 0616ac9 build(deps): bump serde_json in the crates-io group
  • Additional commits viewable in compare view

Updates schannel from 0.1.27 to 0.1.28

Commits
  • e3ed535 chore: update MSRV to 1.71
  • 9841f88 chore: given need for 1 minor build fix, use that chance to also update to 0....
  • ea1d1d1 Merge pull request #114 from dpaoliello/windowssys
  • acc6204 chore: no reason to track self-signed.badssl.com.cer in repo, since they freq...
  • 8b31aec Add the missing sha1 file
  • 141dab0 Bump windows-sys to 0.60
  • See full diff in compare view

Updates security-framework-sys from 2.14.0 to 2.15.0

Commits

...

Description has been truncated

Bumps the pointercrate group with 22 updates:

| Package | From | To |
| --- | --- | --- |
| [serde](https://github.com/serde-rs/serde) | `1.0.219` | `1.0.221` |
| [chrono](https://github.com/chronotope/chrono) | `0.4.41` | `0.4.42` |
| [serde_json](https://github.com/serde-rs/json) | `1.0.143` | `1.0.145` |
| [aws-lc-rs](https://github.com/aws/aws-lc-rs) | `1.13.3` | `1.14.0` |
| [aws-lc-sys](https://github.com/aws/aws-lc-rs) | `0.30.0` | `0.31.0` |
| [bindgen](https://github.com/rust-lang/rust-bindgen) | `0.69.5` | `0.72.1` |
| [cc](https://github.com/rust-lang/cc-rs) | `1.2.36` | `1.2.37` |
| [errno](https://github.com/lambda-fairy/rust-errno) | `0.3.13` | `0.3.14` |
| [iana-time-zone](https://github.com/strawlab/iana-time-zone) | `0.1.63` | `0.1.64` |
| [indexmap](https://github.com/indexmap-rs/indexmap) | `2.11.0` | `2.11.1` |
| [itertools](https://github.com/rust-itertools/itertools) | `0.12.1` | `0.13.0` |
| libredox | `0.1.9` | `0.1.10` |
| [linux-raw-sys](https://github.com/sunfishcode/linux-raw-sys) | `0.4.15` | `0.9.4` |
| [rustc-hash](https://github.com/rust-lang/rustc-hash) | `1.1.0` | `2.1.1` |
| [rustix](https://github.com/bytecodealliance/rustix) | `0.38.44` | `1.0.8` |
| [rustls-webpki](https://github.com/rustls/webpki) | `0.103.4` | `0.103.5` |
| [schannel](https://github.com/steffengy/schannel-rs) | `0.1.27` | `0.1.28` |
| [security-framework-sys](https://github.com/kornelski/rust-security-framework) | `2.14.0` | `2.15.0` |
| [serde_derive](https://github.com/serde-rs/serde) | `1.0.219` | `1.0.221` |
| [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` |


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

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_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 `aws-lc-rs` from 1.13.3 to 1.14.0
- [Release notes](https://github.com/aws/aws-lc-rs/releases)
- [Commits](aws/aws-lc-rs@v1.13.3...v1.14.0)

Updates `aws-lc-sys` from 0.30.0 to 0.31.0
- [Release notes](https://github.com/aws/aws-lc-rs/releases)
- [Commits](aws/aws-lc-rs@aws-lc-sys/v0.30.0...aws-lc-sys/v0.31.0)

Updates `bindgen` from 0.69.5 to 0.72.1
- [Release notes](https://github.com/rust-lang/rust-bindgen/releases)
- [Changelog](https://github.com/rust-lang/rust-bindgen/blob/v0.72.1/CHANGELOG.md)
- [Commits](rust-lang/rust-bindgen@v0.69.5...v0.72.1)

Updates `cc` from 1.2.36 to 1.2.37
- [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.37)

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 `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 `indexmap` from 2.11.0 to 2.11.1
- [Changelog](https://github.com/indexmap-rs/indexmap/blob/main/RELEASES.md)
- [Commits](indexmap-rs/indexmap@2.11.0...2.11.1)

Updates `itertools` from 0.12.1 to 0.13.0
- [Changelog](https://github.com/rust-itertools/itertools/blob/master/CHANGELOG.md)
- [Commits](rust-itertools/itertools@v0.12.1...v0.13.0)

Updates `libredox` from 0.1.9 to 0.1.10

Updates `linux-raw-sys` from 0.4.15 to 0.9.4
- [Commits](sunfishcode/linux-raw-sys@v0.4.15...v0.9.4)

Updates `rustc-hash` from 1.1.0 to 2.1.1
- [Changelog](https://github.com/rust-lang/rustc-hash/blob/master/CHANGELOG.md)
- [Commits](https://github.com/rust-lang/rustc-hash/commits/v2.1.1)

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

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

Updates `schannel` from 0.1.27 to 0.1.28
- [Release notes](https://github.com/steffengy/schannel-rs/releases)
- [Commits](steffengy/schannel-rs@v0.1.27...v0.1.28)

Updates `security-framework-sys` from 2.14.0 to 2.15.0
- [Commits](https://github.com/kornelski/rust-security-framework/commits)

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

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)

---
updated-dependencies:
- dependency-name: serde
  dependency-version: 1.0.221
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: pointercrate
- dependency-name: chrono
  dependency-version: 0.4.42
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: pointercrate
- dependency-name: serde_json
  dependency-version: 1.0.145
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: pointercrate
- dependency-name: aws-lc-rs
  dependency-version: 1.14.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: pointercrate
- dependency-name: aws-lc-sys
  dependency-version: 0.31.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: pointercrate
- dependency-name: bindgen
  dependency-version: 0.72.1
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: pointercrate
- dependency-name: cc
  dependency-version: 1.2.37
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: pointercrate
- dependency-name: errno
  dependency-version: 0.3.14
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: pointercrate
- dependency-name: iana-time-zone
  dependency-version: 0.1.64
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: pointercrate
- dependency-name: indexmap
  dependency-version: 2.11.1
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: pointercrate
- dependency-name: itertools
  dependency-version: 0.13.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: pointercrate
- dependency-name: libredox
  dependency-version: 0.1.10
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: pointercrate
- dependency-name: linux-raw-sys
  dependency-version: 0.9.4
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: pointercrate
- dependency-name: rustc-hash
  dependency-version: 2.1.1
  dependency-type: indirect
  update-type: version-update:semver-major
  dependency-group: pointercrate
- dependency-name: rustix
  dependency-version: 1.0.8
  dependency-type: indirect
  update-type: version-update:semver-major
  dependency-group: pointercrate
- dependency-name: rustls-webpki
  dependency-version: 0.103.5
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: pointercrate
- dependency-name: schannel
  dependency-version: 0.1.28
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: pointercrate
- dependency-name: security-framework-sys
  dependency-version: 2.15.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: pointercrate
- dependency-name: serde_derive
  dependency-version: 1.0.221
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: pointercrate
- dependency-name: tempfile
  dependency-version: 3.22.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: pointercrate
- dependency-name: unicode-ident
  dependency-version: 1.0.19
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: pointercrate
- dependency-name: windows-core
  dependency-version: 0.62.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: pointercrate
...

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 14, 2025
@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github Sep 21, 2025

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

@dependabot dependabot bot closed this Sep 21, 2025
@dependabot dependabot bot deleted the dependabot/cargo/pointercrate-0edcc17c71 branch September 21, 2025 17:18
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