Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Sep 27, 2024

Bumps the crates group with 25 updates in the /userspace/ksud directory:

Package From To
anyhow 1.0.86 1.0.89
clap 4.5.16 4.5.18
const_format 0.2.32 0.2.33
serde 1.0.208 1.0.210
serde_json 1.0.125 1.0.128
libc 0.2.158 0.2.159
is_executable 1.0.1 1.0.3
derive-new 0.6.0 0.7.0
async-trait 0.1.81 0.1.83
autocfg 1.3.0 1.4.0
backtrace 0.3.73 0.3.74
bytes 1.7.1 1.7.2
cc 1.1.14 1.1.22
cpufeatures 0.2.13 0.2.14
fastrand 2.1.0 2.1.1
flate2 1.0.32 1.0.34
iana-time-zone 0.1.60 0.1.61
indexmap 2.4.0 2.5.0
object 0.36.3 0.36.4
syn 2.0.75 2.0.77
thiserror 1.0.63 1.0.64
tokio 1.39.3 1.40.0
unicode-ident 1.0.12 1.0.13
unicode-width 0.1.13 0.1.14
unicode-xid 0.2.5 0.2.6

Updates anyhow from 1.0.86 to 1.0.89

Release notes

Sourced from anyhow's releases.

1.0.89

  • Make anyhow::Error's UnwindSafe and RefUnwindSafe impl consistently available between versions of Rust newer and older than 1.72 (#386)

1.0.88

  • Documentation improvements

1.0.87

  • Support more APIs, including Error::new and Error::chain, in no-std mode on Rust 1.81+ (#383)
Commits
  • 9d3fb6d Release 1.0.89
  • 830c399 Merge pull request #386 from dtolnay/unwindsafe
  • 8454be3 Ensure UnwindSafe even with "backtrace" feature enabled and old Rust
  • a85e414 Add more autotraits tests
  • 139f266 Release 1.0.88
  • aa3ab2b Merge pull request #385 from dtolnay/docnostd
  • 44c3767 Update documentation on no-std error type conversions
  • afe93e7 Release 1.0.87
  • d58fa4b Fix outdated html_root_url
  • c18d807 Disable unused doc_cfg feature
  • Additional commits viewable in compare view

Updates clap from 4.5.16 to 4.5.18

Release notes

Sourced from clap's releases.

v4.5.18

[4.5.18] - 2024-09-20

Features

  • (builder) Expose Arg::get_display_order and Command::get_display_order

v4.5.17

[4.5.17] - 2024-09-04

Fixes

  • (help) Style required argument groups
  • (derive) Improve error messages when unsupported fields are used
Changelog

Sourced from clap's changelog.

[4.5.18] - 2024-09-20

Features

  • (builder) Expose Arg::get_display_order and Command::get_display_order

[4.5.17] - 2024-09-04

Fixes

  • (help) Style required argument groups
  • (derive) Improve error messages when unsupported fields are used
Commits
  • d811585 chore: Release
  • ab948b3 docs: Update changelog
  • 82e599e Merge pull request #5602 from shannmu/delimiter_values
  • 59bf26d feat(clap_complete): Support delimiter values in native completions
  • ccecab3 test(clap_complete): Add test cases for delimiter_values support
  • a3a4764 docs(derive): Specify Parser::update_from semantics
  • df165a2 docs(derive): Flatten isn't just for update
  • 5488bcf docs(derive): Connect more dots for Args/Subcommand
  • 6013ad4 chore: Release
  • f98e3ee docs: Update changelog
  • Additional commits viewable in compare view

Updates const_format from 0.2.32 to 0.2.33

Changelog

Sourced from const_format's changelog.

0.2.33

Fixed Rust Analyzer style warning for assertion macros.

Commits

Updates serde from 1.0.208 to 1.0.210

Release notes

Sourced from serde's releases.

v1.0.210

  • Support serializing and deserializing IpAddr and SocketAddr in no-std mode on Rust 1.77+ (#2816, thanks @​MathiasKoch)
  • Make serde::ser::StdError and serde::de::StdError equivalent to core::error::Error on Rust 1.81+ (#2818)

v1.0.209

  • Fix deserialization of empty structs and empty tuples inside of untagged enums (#2805, thanks @​Mingun)
Commits
  • 89c4b02 Release 1.0.210
  • eeb8e44 Merge pull request #2818 from dtolnay/coreerror
  • 785c2d9 Stabilize no-std StdError trait
  • d549f04 Reformat parse_ip_impl definition and calls
  • 4c0dd63 Delete attr support from core::net deserialization macros
  • 26fb134 Relocate cfg attrs out of parse_ip_impl and parse_socket_impl
  • 07e614b Merge pull request #2817 from dtolnay/corenet
  • b1f899f Delete doc(cfg) attribute from impls that are supported in no-std
  • b4f860e Merge pull request #2816 from MathiasKoch/chore/core-net
  • d940fe1 Reuse existing Buf wrapper as replacement for std::io::Write
  • Additional commits viewable in compare view

Updates serde_json from 1.0.125 to 1.0.128

Release notes

Sourced from serde_json's releases.

1.0.128

  • Support serializing maps containing 128-bit integer keys to serde_json::Value (#1188, thanks @​Mrreadiness)

1.0.127

1.0.126

  • Improve string parsing on targets that use 32-bit pointers but also have fast 64-bit integer arithmetic, such as aarch64-unknown-linux-gnu_ilp32 and x86_64-unknown-linux-gnux32 (#1182, thanks @​CryZe)
Commits
  • d96b1d9 Release 1.0.128
  • 599228d Merge pull request #1188 from Mrreadiness/feat/add-hashmap-key-128-serializer
  • 5416cee feat: add support for 128 bit HashMap key serialization
  • 27a4ca9 Upload CI Cargo.lock for reproducing failures
  • 5ebf65c Release 1.0.127
  • f287a3b Merge pull request 1179 from GREsau/patch-1
  • ec980b0 Release 1.0.126
  • e6282b0 Merge pull request #1184 from serde-rs/fastarithmetic
  • ffc4a43 Improve cfg names for fast arithmetic
  • 4b1048d Merge pull request #1183 from serde-rs/arithmetic
  • Additional commits viewable in compare view

Updates libc from 0.2.158 to 0.2.159

Release notes

Sourced from libc's releases.

0.2.159

Added

Fixed

Changed

Changelog

Sourced from libc's changelog.

0.2.159 - 2024-09-24

Added

Fixed

Changed

Commits
  • 7373a1a chore: release (#3862)
  • 48668be Merge pull request #3931 from tgross35/backport-remove-tmp-file
  • 28bb64b Remove temporary file that was added by accident
  • a515d07 Merge pull request #3904 from tgross35/backport-buildrs-fix
  • abcb8f8 Simplify the RUSTC_WRAPPER check
  • 5078335 Fix rustc version when clippy-driver is used
  • 57a7d46 Merge pull request #3902 from tgross35/backport-horizon-network
  • a3e8869 Revise network definitions for HorizonOS
  • fdd3a26 Merge pull request #3900 from tgross35/espid-cherry-pick
  • 35060e8 Merge pull request #3901 from tgross35/backport-epoll_pwait2
  • Additional commits viewable in compare view

Updates is_executable from 1.0.1 to 1.0.3

Commits
  • cfe9912 Bump to version 1.0.3
  • d6fcf2f Remove old test about README.md being in sync with module docs
  • 95f27a6 Remove old CI
  • e70c103 Update badges in README
  • 61d2e9b Add github actions
  • 001b334 Bump to version 1.0.2
  • fab168c Merge pull request #14 from lucieleblanc/master
  • 82f9c68 replace is_file() --> exists() because symlinks are ok
  • 441c1c7 add file existence check before reading extension
  • ea10f6b Merge pull request #11 from davide125/exclude
  • Additional commits viewable in compare view

Updates derive-new from 0.6.0 to 0.7.0

Commits
  • 6626d8f Update compiletest
  • 1e024dd cargo update, etc.
  • 3389ef2 Fix doc tests
  • bd4486d implement into and into_iter
  • a9230ac fix tests
  • 77cb828 Merge pull request #67 from Paragit-Solutions/implement-new-method-visibility
  • cacbada Merge pull request #66 from shellixyz/patch-1
  • d11f631 Add documentation
  • 3311408 Add visibility to test struct to test compilation and correct macro expansion
  • 61853b7 Make the default visibility public
  • Additional commits viewable in compare view

Updates async-trait from 0.1.81 to 0.1.83

Release notes

Sourced from async-trait's releases.

0.1.83

  • Prevent needless_arbitrary_self_type lint being produced in generated code (#278)

0.1.82

  • Prevent elided_named_lifetimes lint being produced in generated code (#276)
Commits
  • e6b4d47 Release 0.1.83
  • bfe8d61 Merge pull request #278 from dtolnay/arbself
  • 7bd974b Ignore needless_arbitrary_self_type clippy lint in generated code
  • b53b4e7 Add regression test for issue 277
  • f8e5bb4 Release 0.1.82
  • 8fbf118 Merge pull request #276 from dtolnay/elidednamed
  • 6fa246a Ignore nightly's new elided_named_lifetimes lint in generated code
  • d542a0d Upload CI Cargo.lock for reproducing failures
  • 8828c35 Sort dependency features in Cargo.toml
  • ba9793a Update ui test suite to nightly-2024-08-11
  • Additional commits viewable in compare view

Updates autocfg from 1.3.0 to 1.4.0

Commits
  • d07df66 Merge pull request #73 from cuviper/release-1.4.0
  • f6066f0 Release 1.4.0
  • 8af60ec Merge pull request #70 from Techcable/feature/rustc-check-cfg
  • 52a995b Apply suggestions from code review
  • a8703c1 Attempt rust 1.0 compat for ci/verify-check-cfg
  • ac78be8 Add ci test crate for check-cfg
  • 0b4a761 Have emit_has methods delegate wherever possible
  • 546f7c6 Fix minor doc issues
  • e0e0f18 Automatically emit rustc-check-cfg directives for AutoCfg
  • 1953a17 Merge pull request #72 from cuviper/pretty-way
  • Additional commits viewable in compare view

Updates backtrace from 0.3.73 to 0.3.74

Release notes

Sourced from backtrace's releases.

0.3.74

What's Changed

New Contributors

Full Changelog: rust-lang/backtrace-rs@0.3.73...0.3.74

Commits
  • 38d49aa Merge pull request #658 from workingjubilee/cut-0.3.74
  • c1749ce Cut backtrace 0.3.74
  • 230570f Merge pull request #660 from workingjubilee/dont-unsoundly-iterate-phdr
  • 153f510 Do not destructure maybe-uninit fields
  • 3858946 Revise dl_iterate_phdr callback to be sound-ish
  • 7d062c6rust-lang/backtrace-rs#653
  • fc37b22rust-lang/backtrace-rs#657
  • 600beaarust-lang/backtrace-rs#648
  • 84b6c1drust-lang/backtrace-rs#652
  • 95c3bac Make enum print::PrintFmtrust-lang/backtrace-rs#651
  • Additional commits viewable in compare view

Updates bytes from 1.7.1 to 1.7.2

Release notes

Sourced from bytes's releases.

Bytes 1.7.2

1.7.2 (September 17, 2024)

Fixed

  • Fix default impl of Buf::{get_int, get_int_le} (#732)

Documented

  • Fix double spaces in comments and doc comments (#731)

Internal changes

  • Ensure BytesMut::advance reduces capacity (#728)
Changelog

Sourced from bytes's changelog.

1.7.2 (September 17, 2024)

Fixed

  • Fix default impl of Buf::{get_int, get_int_le} (#732)

Documented

  • Fix double spaces in comments and doc comments (#731)

Internal changes

  • Ensure BytesMut::advance reduces capacity (#728)
Commits

Updates cc from 1.1.14 to 1.1.22

Release notes

Sourced from cc's releases.

cc-v1.1.22

Other

  • Don't rerun if PATH changes (#1215)

cc-v1.1.21

Other

  • disable pic for targets that end in -none (#1212)

cc-v1.1.20

Other

  • Add buildcache as known Rust and C/C++ compiler wrapper (#1209)

cc-v1.1.19

Other

  • Add support arm64e-apple-darwin (#1207)

cc-v1.1.18

Other

  • Fixed unsoundness in StderrForwarder::forward_available (#1203)

cc-v1.1.17

Fixed

  • fix finding toolchains when invoked by msbuild (#1201)

cc-v1.1.16

Other

  • Treat VxWorks wr-cc as a Gnu compiler (#1198)

cc-v1.1.15

Other

  • Add -mfloat-abi=hard as a default argument when using any arm/thumb-none-eabihf target (#1194)
Changelog

Sourced from cc's changelog.

1.1.22 - 2024-09-27

Other

  • Don't rerun if PATH changes (#1215)

1.1.21 - 2024-09-18

Other

  • disable pic for targets that end in -none (#1212)

1.1.20 - 2024-09-17

Other

  • Add buildcache as known Rust and C/C++ compiler wrapper (#1209)

1.1.19 - 2024-09-15

Other

  • Add support arm64e-apple-darwin (#1207)

1.1.18 - 2024-09-07

Other

  • Fixed unsoundness in StderrForwarder::forward_available (#1203)

1.1.17 - 2024-09-06

Fixed

  • fix finding toolchains when invoked by msbuild (#1201)

1.1.16 - 2024-09-04

Other

  • Treat VxWorks wr-cc as a Gnu compiler (#1198)

1.1.15 - 2024-08-26

Other

  • Add -mfloat-abi=hard as a default argument when using any arm/thumb-none-eabihf target (#1194)
Commits

Updates clap_builder from 4.5.15 to 4.5.18

Release notes

Sourced from clap_builder's releases.

v4.5.18

[4.5.18] - 2024-09-20

Features

  • (builder) Expose Arg::get_display_order and Command::get_display_order

v4.5.17

[4.5.17] - 2024-09-04

Fixes

  • (help) Style required argument groups
  • (derive) Improve error messages when unsupported fields are used

v4.5.16

[4.5.16] - 2024-08-15

Fixes

  • (derive) Improve error messages when derive feature is missing
Changelog

Sourced from clap_builder's changelog.

[4.5.18] - 2024-09-20

Features

  • (builder) Expose Arg::get_display_order and Command::get_display_order

[4.5.17] - 2024-09-04

Fixes

  • (help) Style required argument groups
  • (derive) Improve error messages when unsupported fields are used

[4.5.16] - 2024-08-15

Fixes

  • (derive) Improve error messages when derive feature is missing
Commits
  • 0d142f6 chore: Release
  • 0facf1f docs: Update changelog
  • ee6af99 Merge pull request #5743 from epage/sort
  • 232ee10 fix(complete): Use existing display order for Arg/Command
  • c6b5d62 feat(builder): Expose get_display_order
  • 67d9fef feat(complete): Give control over display order
  • 59a61e1 refactor(complete): Pull out common candidate code
  • 1448791 fix(complete): Specify tags for built-in candiates
  • a4aa5df feat(complete): Group by tag
  • a126149 refactor(complete): Remove redundant dedup
  • Additional commits viewable in compare view

Updates clap_derive from 4.5.13 to 4.5.18

Release notes

Sourced from clap_derive's releases.

v4.5.18

[4.5.18] - 2024-09-20

Features

  • (builder) Expose Arg::get_display_order and Command::get_display_order

v4.5.17

[4.5.17] - 2024-09-04

Fixes

  • (help) Style required argument groups
  • (derive) Improve error messages when unsupported fields are used

v4.5.16

[4.5.16] - 2024-08-15

Fixes

  • (derive) Improve error messages when derive feature is missing

v4.5.15

[4.5.15] - 2024-08-10

Compatiblity

  • (unstable-ext) Arg::remove changed return types

Fixes

  • (unstable-ext) Make Arg::remove return the removed item

v4.5.14

[4.5.14] - 2024-08-08

Features

  • (unstable-ext) Added Arg::add for attaching arbitrary state, like completion hints, to Arg without Arg knowing about it
Changelog

Sourced from clap_derive's changelog.

[4.5.18] - 2024-09-20

Features

  • (builder) Expose Arg::get_display_order and Command::get_display_order

[4.5.17] - 2024-09-04

Fixes

  • (help) Style required argument groups
  • (derive) Improve error messages when unsupported fields are used

[4.5.16] - 2024-08-15

Fixes

  • (derive) Improve error messages when derive feature is missing

[4.5.15] - 2024-08-10

Compatiblity

  • (unstable-ext) Arg::remove changed return types

Fixes

  • (unstable-ext) Make Arg::remove return the removed item

[4.5.14] - 2024-08-08

Features

  • (unstable-ext) Added Arg::add for attaching arbitrary state, like completion hints, to Arg without Arg knowing about it
Commits
  • 0d142f6 chore: Release
  • 0facf1f docs: Update changelog
  • ee6af99 Merge pull request #5743 from epage/sort
  • 232ee10 fix(complete): Use existing display order for Arg/Command
  • c6b5d62 feat(builder): Expose get_display_order
  • 67d9fef feat(complete): Give control over display order
  • 59a61e1 refactor(complete): Pull out common candidate code
  • 1448791 fix(complete): Specify tags for built-in candiates
  • a4aa5df feat(complete): Group by tag
  • a126149 refactor(complete): Remove redundant dedup
  • Additional commits viewable in compare view

Updates const_format_proc_macros from 0.2.32 to 0.2.33

Changelog

Sourced from const_format_proc_macros's changelog.

0.2.33

Fixed Rust Analyzer style warning for assertion macros.

Commits

Updates cpufeatures from 0.2.13 to 0.2.14

Commits

Updates fastrand from 2.1.0 to 2.1.1

Release notes

Sourced from fastrand's releases.

v2.1.1

  • Remove support for 128-bit targets, as they are not supported by rustc yet. (#87)
Changelog

Sourced from fastrand's changelog.

Version 2.1.1

  • Remove support for 128-bit targets, as they are not supported by rustc yet. (#87)
Commits

Updates flate2 from 1.0.32 to 1.0.34

Release notes

Sourced from flate2's releases.

1.0.34

What's Changed

New Contributors

Full Changelog: rust-lang/flate2-rs@1.0.33...1.0.34

1.0.33 - fix minimal manifest versions

What's Changed

New Contributors

Full Changelog: rust-lang/flate2-rs@1.0.32...1.0.33

Commits
  • 1a28821 Merge pull request #431 from Shnatsel/better-wording
  • 2c29780 Merge pull request #428 from Shnatsel/upgrade-zlib-rs
  • 423981a Better wording in compression level docs
  • da5c8cf Bump version
  • eeee4c6 Merge pull request #430 from Shnatsel/detailed-level-docs
  • 731df32 Update Cargo.toml
  • 8210288 Document backend differences
  • 1f78c5c Upgrade zlib-rs to 0.3.0 to get multiple bugfixes:
  • 6fbd6d2 Merge pull request #427 from ByteBaker/main
  • 936aa35 docs: correctly mention compression level
  • Additional commits viewable in compare view

Updates gimli from 0.29.0 to 0.31.0

Changelog

Sourced from gimli's changelog.

0.31.0

Released 2024/07/16.

Breaking changes

  • Deleted support for segment selectors. #720

  • Added read::FileEntry::source and deleted Copy implementation. #728

  • Changed read::LineRow::execute to return a Result. Description has been truncated

Bumps the crates group with 25 updates in the /userspace/ksud directory:

| Package | From | To |
| --- | --- | --- |
| [anyhow](https://github.com/dtolnay/anyhow) | `1.0.86` | `1.0.89` |
| [clap](https://github.com/clap-rs/clap) | `4.5.16` | `4.5.18` |
| [const_format](https://github.com/rodrimati1992/const_format_crates) | `0.2.32` | `0.2.33` |
| [serde](https://github.com/serde-rs/serde) | `1.0.208` | `1.0.210` |
| [serde_json](https://github.com/serde-rs/json) | `1.0.125` | `1.0.128` |
| [libc](https://github.com/rust-lang/libc) | `0.2.158` | `0.2.159` |
| [is_executable](https://github.com/fitzgen/is_executable) | `1.0.1` | `1.0.3` |
| [derive-new](https://github.com/nrc/derive-new) | `0.6.0` | `0.7.0` |
| [async-trait](https://github.com/dtolnay/async-trait) | `0.1.81` | `0.1.83` |
| [autocfg](https://github.com/cuviper/autocfg) | `1.3.0` | `1.4.0` |
| [backtrace](https://github.com/rust-lang/backtrace-rs) | `0.3.73` | `0.3.74` |
| [bytes](https://github.com/tokio-rs/bytes) | `1.7.1` | `1.7.2` |
| [cc](https://github.com/rust-lang/cc-rs) | `1.1.14` | `1.1.22` |
| [cpufeatures](https://github.com/RustCrypto/utils) | `0.2.13` | `0.2.14` |
| [fastrand](https://github.com/smol-rs/fastrand) | `2.1.0` | `2.1.1` |
| [flate2](https://github.com/rust-lang/flate2-rs) | `1.0.32` | `1.0.34` |
| [iana-time-zone](https://github.com/strawlab/iana-time-zone) | `0.1.60` | `0.1.61` |
| [indexmap](https://github.com/indexmap-rs/indexmap) | `2.4.0` | `2.5.0` |
| [object](https://github.com/gimli-rs/object) | `0.36.3` | `0.36.4` |
| [syn](https://github.com/dtolnay/syn) | `2.0.75` | `2.0.77` |
| [thiserror](https://github.com/dtolnay/thiserror) | `1.0.63` | `1.0.64` |
| [tokio](https://github.com/tokio-rs/tokio) | `1.39.3` | `1.40.0` |
| [unicode-ident](https://github.com/dtolnay/unicode-ident) | `1.0.12` | `1.0.13` |
| [unicode-width](https://github.com/unicode-rs/unicode-width) | `0.1.13` | `0.1.14` |
| [unicode-xid](https://github.com/unicode-rs/unicode-xid) | `0.2.5` | `0.2.6` |



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

Updates `clap` from 4.5.16 to 4.5.18
- [Release notes](https://github.com/clap-rs/clap/releases)
- [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md)
- [Commits](clap-rs/clap@clap_complete-v4.5.16...clap_complete-v4.5.18)

Updates `const_format` from 0.2.32 to 0.2.33
- [Release notes](https://github.com/rodrimati1992/const_format_crates/releases)
- [Changelog](https://github.com/rodrimati1992/const_format_crates/blob/master/Changelog.md)
- [Commits](https://github.com/rodrimati1992/const_format_crates/commits)

Updates `serde` from 1.0.208 to 1.0.210
- [Release notes](https://github.com/serde-rs/serde/releases)
- [Commits](serde-rs/serde@v1.0.208...v1.0.210)

Updates `serde_json` from 1.0.125 to 1.0.128
- [Release notes](https://github.com/serde-rs/json/releases)
- [Commits](serde-rs/json@1.0.125...1.0.128)

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

Updates `is_executable` from 1.0.1 to 1.0.3
- [Commits](fitzgen/is_executable@v1.0.1...v1.0.3)

Updates `derive-new` from 0.6.0 to 0.7.0
- [Commits](nrc/derive-new@0.6.0...0.7)

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

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

Updates `backtrace` from 0.3.73 to 0.3.74
- [Release notes](https://github.com/rust-lang/backtrace-rs/releases)
- [Commits](rust-lang/backtrace-rs@0.3.73...0.3.74)

Updates `bytes` from 1.7.1 to 1.7.2
- [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.7.1...v1.7.2)

Updates `cc` from 1.1.14 to 1.1.22
- [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.1.14...cc-v1.1.22)

Updates `clap_builder` from 4.5.15 to 4.5.18
- [Release notes](https://github.com/clap-rs/clap/releases)
- [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md)
- [Commits](clap-rs/clap@v4.5.15...v4.5.18)

Updates `clap_derive` from 4.5.13 to 4.5.18
- [Release notes](https://github.com/clap-rs/clap/releases)
- [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md)
- [Commits](clap-rs/clap@v4.5.13...v4.5.18)

Updates `const_format_proc_macros` from 0.2.32 to 0.2.33
- [Release notes](https://github.com/rodrimati1992/const_format_crates/releases)
- [Changelog](https://github.com/rodrimati1992/const_format_crates/blob/master/Changelog.md)
- [Commits](https://github.com/rodrimati1992/const_format_crates/commits)

Updates `cpufeatures` from 0.2.13 to 0.2.14
- [Commits](RustCrypto/utils@cpufeatures-v0.2.13...cpufeatures-v0.2.14)

Updates `fastrand` from 2.1.0 to 2.1.1
- [Release notes](https://github.com/smol-rs/fastrand/releases)
- [Changelog](https://github.com/smol-rs/fastrand/blob/master/CHANGELOG.md)
- [Commits](smol-rs/fastrand@v2.1.0...v2.1.1)

Updates `flate2` from 1.0.32 to 1.0.34
- [Release notes](https://github.com/rust-lang/flate2-rs/releases)
- [Changelog](https://github.com/rust-lang/flate2-rs/blob/main/CHANGELOG.md)
- [Commits](rust-lang/flate2-rs@1.0.32...1.0.34)

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

Updates `iana-time-zone` from 0.1.60 to 0.1.61
- [Changelog](https://github.com/strawlab/iana-time-zone/blob/main/CHANGELOG.md)
- [Commits](strawlab/iana-time-zone@v0.1.60...v0.1.61)

Updates `indexmap` from 2.4.0 to 2.5.0
- [Changelog](https://github.com/indexmap-rs/indexmap/blob/master/RELEASES.md)
- [Commits](indexmap-rs/indexmap@2.4.0...2.5.0)

Updates `miniz_oxide` from 0.7.4 to 0.8.0
- [Changelog](https://github.com/Frommi/miniz_oxide/blob/master/CHANGELOG.md)
- [Commits](Frommi/miniz_oxide@0.7.4...0.8.0)

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

Updates `serde_derive` from 1.0.208 to 1.0.210
- [Release notes](https://github.com/serde-rs/serde/releases)
- [Commits](serde-rs/serde@v1.0.208...v1.0.210)

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

Updates `thiserror` from 1.0.63 to 1.0.64
- [Release notes](https://github.com/dtolnay/thiserror/releases)
- [Commits](dtolnay/thiserror@1.0.63...1.0.64)

Updates `thiserror-impl` from 1.0.63 to 1.0.64
- [Release notes](https://github.com/dtolnay/thiserror/releases)
- [Commits](dtolnay/thiserror@1.0.63...1.0.64)

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

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

Updates `unicode-width` from 0.1.13 to 0.1.14
- [Commits](unicode-rs/unicode-width@v0.1.13...v0.1.14)

Updates `unicode-xid` from 0.2.5 to 0.2.6
- [Changelog](https://github.com/unicode-rs/unicode-xid/blob/master/CHANGELOG.md)
- [Commits](unicode-rs/unicode-xid@v0.2.5...v0.2.6)

---
updated-dependencies:
- dependency-name: anyhow
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: crates
- dependency-name: clap
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: crates
- dependency-name: const_format
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: crates
- dependency-name: serde
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: crates
- dependency-name: serde_json
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: crates
- dependency-name: libc
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: crates
- dependency-name: is_executable
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: crates
- dependency-name: derive-new
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: crates
- dependency-name: async-trait
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: crates
- dependency-name: autocfg
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: crates
- dependency-name: backtrace
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: crates
- dependency-name: bytes
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: crates
- dependency-name: cc
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: crates
- dependency-name: clap_builder
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: crates
- dependency-name: clap_derive
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: crates
- dependency-name: const_format_proc_macros
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: crates
- dependency-name: cpufeatures
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: crates
- dependency-name: fastrand
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: crates
- dependency-name: flate2
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: crates
- dependency-name: gimli
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: crates
- dependency-name: iana-time-zone
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: crates
- dependency-name: indexmap
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: crates
- dependency-name: miniz_oxide
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: crates
- dependency-name: object
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: crates
- dependency-name: serde_derive
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: crates
- dependency-name: syn
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: crates
- dependency-name: thiserror
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: crates
- dependency-name: thiserror-impl
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: crates
- dependency-name: tokio
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: crates
- dependency-name: unicode-ident
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: crates
- dependency-name: unicode-width
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: crates
- dependency-name: unicode-xid
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: crates
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file rust Pull requests that update Rust code labels Sep 27, 2024
@tiann tiann merged commit 78ff3ab into main Sep 29, 2024
@tiann tiann deleted the dependabot/cargo/userspace/ksud/crates-1ad5bf77db branch September 29, 2024 07:46
rsuntk pushed a commit to rsuntk/KernelSU that referenced this pull request Sep 29, 2024
…tiann#2098)

Bumps the crates group with 25 updates in the /userspace/ksud directory:

| Package | From | To |
| --- | --- | --- |
| [anyhow](https://github.com/dtolnay/anyhow) | `1.0.86` | `1.0.89` |
| [clap](https://github.com/clap-rs/clap) | `4.5.16` | `4.5.18` |
| [const_format](https://github.com/rodrimati1992/const_format_crates) |
`0.2.32` | `0.2.33` |
| [serde](https://github.com/serde-rs/serde) | `1.0.208` | `1.0.210` |
| [serde_json](https://github.com/serde-rs/json) | `1.0.125` | `1.0.128`
|
| [libc](https://github.com/rust-lang/libc) | `0.2.158` | `0.2.159` |
| [is_executable](https://github.com/fitzgen/is_executable) | `1.0.1` |
`1.0.3` |
| [derive-new](https://github.com/nrc/derive-new) | `0.6.0` | `0.7.0` |
| [async-trait](https://github.com/dtolnay/async-trait) | `0.1.81` |
`0.1.83` |
| [autocfg](https://github.com/cuviper/autocfg) | `1.3.0` | `1.4.0` |
| [backtrace](https://github.com/rust-lang/backtrace-rs) | `0.3.73` |
`0.3.74` |
| [bytes](https://github.com/tokio-rs/bytes) | `1.7.1` | `1.7.2` |
| [cc](https://github.com/rust-lang/cc-rs) | `1.1.14` | `1.1.22` |
| [cpufeatures](https://github.com/RustCrypto/utils) | `0.2.13` |
`0.2.14` |
| [fastrand](https://github.com/smol-rs/fastrand) | `2.1.0` | `2.1.1` |
| [flate2](https://github.com/rust-lang/flate2-rs) | `1.0.32` | `1.0.34`
|
| [iana-time-zone](https://github.com/strawlab/iana-time-zone) |
`0.1.60` | `0.1.61` |
| [indexmap](https://github.com/indexmap-rs/indexmap) | `2.4.0` |
`2.5.0` |
| [object](https://github.com/gimli-rs/object) | `0.36.3` | `0.36.4` |
| [syn](https://github.com/dtolnay/syn) | `2.0.75` | `2.0.77` |
| [thiserror](https://github.com/dtolnay/thiserror) | `1.0.63` |
`1.0.64` |
| [tokio](https://github.com/tokio-rs/tokio) | `1.39.3` | `1.40.0` |
| [unicode-ident](https://github.com/dtolnay/unicode-ident) | `1.0.12` |
`1.0.13` |
| [unicode-width](https://github.com/unicode-rs/unicode-width) |
`0.1.13` | `0.1.14` |
| [unicode-xid](https://github.com/unicode-rs/unicode-xid) | `0.2.5` |
`0.2.6` |


Updates `anyhow` from 1.0.86 to 1.0.89
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/dtolnay/anyhow/releases">anyhow's
releases</a>.</em></p>
<blockquote>
<h2>1.0.89</h2>
<ul>
<li>Make anyhow::Error's <code>UnwindSafe</code> and
<code>RefUnwindSafe</code> impl consistently available between versions
of Rust newer and older than 1.72 (<a
href="https://redirect.github.com/dtolnay/anyhow/issues/386">#386</a>)</li>
</ul>
<h2>1.0.88</h2>
<ul>
<li>Documentation improvements</li>
</ul>
<h2>1.0.87</h2>
<ul>
<li>Support more APIs, including <code>Error::new</code> and
<code>Error::chain</code>, in no-std mode on Rust 1.81+ (<a
href="https://redirect.github.com/dtolnay/anyhow/issues/383">#383</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/dtolnay/anyhow/commit/9d3fb6d0968bd9f95a0d8bbc5269eb2496880510"><code>9d3fb6d</code></a>
Release 1.0.89</li>
<li><a
href="https://github.com/dtolnay/anyhow/commit/830c399126c1db902681130f5c4273d93767b990"><code>830c399</code></a>
Merge pull request <a
href="https://redirect.github.com/dtolnay/anyhow/issues/386">#386</a>
from dtolnay/unwindsafe</li>
<li><a
href="https://github.com/dtolnay/anyhow/commit/8454be372f2a7832436d7021b8f2f0a96db558b3"><code>8454be3</code></a>
Ensure UnwindSafe even with &quot;backtrace&quot; feature enabled and
old Rust</li>
<li><a
href="https://github.com/dtolnay/anyhow/commit/a85e414bf555ed961f59c2c69410e7b5f706df65"><code>a85e414</code></a>
Add more autotraits tests</li>
<li><a
href="https://github.com/dtolnay/anyhow/commit/139f266b903ac2eab462292495f864740446dcdc"><code>139f266</code></a>
Release 1.0.88</li>
<li><a
href="https://github.com/dtolnay/anyhow/commit/aa3ab2b9f0a8cdf4b54dae58d39a2446c5eecbb2"><code>aa3ab2b</code></a>
Merge pull request <a
href="https://redirect.github.com/dtolnay/anyhow/issues/385">#385</a>
from dtolnay/docnostd</li>
<li><a
href="https://github.com/dtolnay/anyhow/commit/44c37674d35a0899fde03ae2fdaeee0bd4c38501"><code>44c3767</code></a>
Update documentation on no-std error type conversions</li>
<li><a
href="https://github.com/dtolnay/anyhow/commit/afe93e7b167d069ac79f2c7f363b919d3793e6ce"><code>afe93e7</code></a>
Release 1.0.87</li>
<li><a
href="https://github.com/dtolnay/anyhow/commit/d58fa4b282c1149bd121419dd359eb8caf2c113d"><code>d58fa4b</code></a>
Fix outdated html_root_url</li>
<li><a
href="https://github.com/dtolnay/anyhow/commit/c18d80743cead05bd75cf2e310e7a00c515facb9"><code>c18d807</code></a>
Disable unused doc_cfg feature</li>
<li>Additional commits viewable in <a
href="https://github.com/dtolnay/anyhow/compare/1.0.86...1.0.89">compare
view</a></li>
</ul>
</details>
<br />

Updates `clap` from 4.5.16 to 4.5.18
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/clap-rs/clap/releases">clap's
releases</a>.</em></p>
<blockquote>
<h2>v4.5.18</h2>
<h2>[4.5.18] - 2024-09-20</h2>
<h3>Features</h3>
<ul>
<li><em>(builder)</em> Expose <code>Arg::get_display_order</code> and
<code>Command::get_display_order</code></li>
</ul>
<h2>v4.5.17</h2>
<h2>[4.5.17] - 2024-09-04</h2>
<h3>Fixes</h3>
<ul>
<li><em>(help)</em> Style required argument groups</li>
<li><em>(derive)</em> Improve error messages when unsupported fields are
used</li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/clap-rs/clap/blob/master/CHANGELOG.md">clap's
changelog</a>.</em></p>
<blockquote>
<h2>[4.5.18] - 2024-09-20</h2>
<h3>Features</h3>
<ul>
<li><em>(builder)</em> Expose <code>Arg::get_display_order</code> and
<code>Command::get_display_order</code></li>
</ul>
<h2>[4.5.17] - 2024-09-04</h2>
<h3>Fixes</h3>
<ul>
<li><em>(help)</em> Style required argument groups</li>
<li><em>(derive)</em> Improve error messages when unsupported fields are
used</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/clap-rs/clap/commit/d81158599f5b3a2434845a1731377eae84780b9a"><code>d811585</code></a>
chore: Release</li>
<li><a
href="https://github.com/clap-rs/clap/commit/ab948b35561b5bc64b50d6a52d799aa5ac5de187"><code>ab948b3</code></a>
docs: Update changelog</li>
<li><a
href="https://github.com/clap-rs/clap/commit/82e599e91d64ddae7231c98a91b4cd39e8c9036d"><code>82e599e</code></a>
Merge pull request <a
href="https://redirect.github.com/clap-rs/clap/issues/5602">#5602</a>
from shannmu/delimiter_values</li>
<li><a
href="https://github.com/clap-rs/clap/commit/59bf26dd56032a7a4e6d923cd37de6e72c33078e"><code>59bf26d</code></a>
feat(clap_complete): Support delimiter values in native completions</li>
<li><a
href="https://github.com/clap-rs/clap/commit/ccecab394b45bc4dd251d00b7d69737ed93d18f8"><code>ccecab3</code></a>
test(clap_complete): Add test cases for delimiter_values support</li>
<li><a
href="https://github.com/clap-rs/clap/commit/a3a476407b01f083dc06200783ad745bc45e5da8"><code>a3a4764</code></a>
docs(derive): Specify Parser::update_from semantics</li>
<li><a
href="https://github.com/clap-rs/clap/commit/df165a2da431138bcc5cd891aec922cbdeda6ded"><code>df165a2</code></a>
docs(derive): Flatten isn't just for update</li>
<li><a
href="https://github.com/clap-rs/clap/commit/5488bcfa30255c59f931f1248e854c0087b2b969"><code>5488bcf</code></a>
docs(derive): Connect more dots for Args/Subcommand</li>
<li><a
href="https://github.com/clap-rs/clap/commit/6013ad4f676dd25c5b5150557a5fb5698c3de020"><code>6013ad4</code></a>
chore: Release</li>
<li><a
href="https://github.com/clap-rs/clap/commit/f98e3ee215015055d776f91217019c33da78c975"><code>f98e3ee</code></a>
docs: Update changelog</li>
<li>Additional commits viewable in <a
href="https://github.com/clap-rs/clap/compare/clap_complete-v4.5.16...clap_complete-v4.5.18">compare
view</a></li>
</ul>
</details>
<br />

Updates `const_format` from 0.2.32 to 0.2.33
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/rodrimati1992/const_format_crates/blob/master/Changelog.md">const_format's
changelog</a>.</em></p>
<blockquote>
<h3>0.2.33</h3>
<p>Fixed Rust Analyzer style warning for assertion macros.</p>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li>See full diff in <a
href="https://github.com/rodrimati1992/const_format_crates/commits">compare
view</a></li>
</ul>
</details>
<br />

Updates `serde` from 1.0.208 to 1.0.210
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/serde-rs/serde/releases">serde's
releases</a>.</em></p>
<blockquote>
<h2>v1.0.210</h2>
<ul>
<li>Support serializing and deserializing <code>IpAddr</code> and
<code>SocketAddr</code> in no-std mode on Rust 1.77+ (<a
href="https://redirect.github.com/serde-rs/serde/issues/2816">#2816</a>,
thanks <a
href="https://github.com/MathiasKoch"><code>@​MathiasKoch</code></a>)</li>
<li>Make <code>serde::ser::StdError</code> and
<code>serde::de::StdError</code> equivalent to
<code>core::error::Error</code> on Rust 1.81+ (<a
href="https://redirect.github.com/serde-rs/serde/issues/2818">#2818</a>)</li>
</ul>
<h2>v1.0.209</h2>
<ul>
<li>Fix deserialization of empty structs and empty tuples inside of
untagged enums (<a
href="https://redirect.github.com/serde-rs/serde/issues/2805">#2805</a>,
thanks <a
href="https://github.com/Mingun"><code>@​Mingun</code></a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/serde-rs/serde/commit/89c4b02bf32ceae5b17d89f93a452ccc195ca038"><code>89c4b02</code></a>
Release 1.0.210</li>
<li><a
href="https://github.com/serde-rs/serde/commit/eeb8e44cda15f929796cd72241b0311e0bd04e67"><code>eeb8e44</code></a>
Merge pull request <a
href="https://redirect.github.com/serde-rs/serde/issues/2818">#2818</a>
from dtolnay/coreerror</li>
<li><a
href="https://github.com/serde-rs/serde/commit/785c2d9605ee73cc172dfd421228c1dccca984c9"><code>785c2d9</code></a>
Stabilize no-std StdError trait</li>
<li><a
href="https://github.com/serde-rs/serde/commit/d549f048e10bcb5e677afaf7b99d0ed3604b113b"><code>d549f04</code></a>
Reformat parse_ip_impl definition and calls</li>
<li><a
href="https://github.com/serde-rs/serde/commit/4c0dd63011434905265e2710bb9186e09e4f8ec2"><code>4c0dd63</code></a>
Delete attr support from core::net deserialization macros</li>
<li><a
href="https://github.com/serde-rs/serde/commit/26fb1341651c4e0ae4d58c675db3ca2a0d6e12c2"><code>26fb134</code></a>
Relocate cfg attrs out of parse_ip_impl and parse_socket_impl</li>
<li><a
href="https://github.com/serde-rs/serde/commit/07e614b52b5ab3387d86d3198e5f52cd1f5ff3cb"><code>07e614b</code></a>
Merge pull request <a
href="https://redirect.github.com/serde-rs/serde/issues/2817">#2817</a>
from dtolnay/corenet</li>
<li><a
href="https://github.com/serde-rs/serde/commit/b1f899fbe81f070803d9f7ca6e5d1cc3f19c9ea2"><code>b1f899f</code></a>
Delete doc(cfg) attribute from impls that are supported in no-std</li>
<li><a
href="https://github.com/serde-rs/serde/commit/b4f860e62767828beb3ef91721b6c56a31f9baad"><code>b4f860e</code></a>
Merge pull request <a
href="https://redirect.github.com/serde-rs/serde/issues/2816">#2816</a>
from MathiasKoch/chore/core-net</li>
<li><a
href="https://github.com/serde-rs/serde/commit/d940fe1b4934f097b0333dcb87bec5ee308d39cd"><code>d940fe1</code></a>
Reuse existing Buf wrapper as replacement for std::io::Write</li>
<li>Additional commits viewable in <a
href="https://github.com/serde-rs/serde/compare/v1.0.208...v1.0.210">compare
view</a></li>
</ul>
</details>
<br />

Updates `serde_json` from 1.0.125 to 1.0.128
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/serde-rs/json/releases">serde_json's
releases</a>.</em></p>
<blockquote>
<h2>1.0.128</h2>
<ul>
<li>Support serializing maps containing 128-bit integer keys to
serde_json::Value (<a
href="https://redirect.github.com/serde-rs/json/issues/1188">#1188</a>,
thanks <a
href="https://github.com/Mrreadiness"><code>@​Mrreadiness</code></a>)</li>
</ul>
<h2>1.0.127</h2>
<ul>
<li>Add more removal methods to OccupiedEntry (<a
href="https://redirect.github.com/serde-rs/json/issues/1179">#1179</a>,
thanks <a
href="https://github.com/GREsau"><code>@​GREsau</code></a>)</li>
</ul>
<h2>1.0.126</h2>
<ul>
<li>Improve string parsing on targets that use 32-bit pointers but also
have fast 64-bit integer arithmetic, such as
aarch64-unknown-linux-gnu_ilp32 and x86_64-unknown-linux-gnux32 (<a
href="https://redirect.github.com/serde-rs/json/issues/1182">#1182</a>,
thanks <a href="https://github.com/CryZe"><code>@​CryZe</code></a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/serde-rs/json/commit/d96b1d9b643b49a0bb92a8cf280daf6aa08f37cc"><code>d96b1d9</code></a>
Release 1.0.128</li>
<li><a
href="https://github.com/serde-rs/json/commit/599228d5dc52a0f1595fe4bd901821f70d0317a5"><code>599228d</code></a>
Merge pull request <a
href="https://redirect.github.com/serde-rs/json/issues/1188">#1188</a>
from Mrreadiness/feat/add-hashmap-key-128-serializer</li>
<li><a
href="https://github.com/serde-rs/json/commit/5416cee6c5ad355907f6e9d5f6039b994c69f768"><code>5416cee</code></a>
feat: add support for 128 bit HashMap key serialization</li>
<li><a
href="https://github.com/serde-rs/json/commit/27a4ca9d7a62394fe8f0103f3d91de59f055a4c4"><code>27a4ca9</code></a>
Upload CI Cargo.lock for reproducing failures</li>
<li><a
href="https://github.com/serde-rs/json/commit/5ebf65cc480f90714c94f82099ca9161d80cbb10"><code>5ebf65c</code></a>
Release 1.0.127</li>
<li><a
href="https://github.com/serde-rs/json/commit/f287a3b1a93ecb1a11cee31cb638bd9523a58add"><code>f287a3b</code></a>
Merge pull request 1179 from GREsau/patch-1</li>
<li><a
href="https://github.com/serde-rs/json/commit/ec980b02774abbff12fd3e26b0a1582eb14dcef7"><code>ec980b0</code></a>
Release 1.0.126</li>
<li><a
href="https://github.com/serde-rs/json/commit/e6282b0c479947805a33c7f167b1d19dd4c7ad4f"><code>e6282b0</code></a>
Merge pull request <a
href="https://redirect.github.com/serde-rs/json/issues/1184">#1184</a>
from serde-rs/fastarithmetic</li>
<li><a
href="https://github.com/serde-rs/json/commit/ffc4a43453029cdc5603cfe3ef08414488fd45de"><code>ffc4a43</code></a>
Improve cfg names for fast arithmetic</li>
<li><a
href="https://github.com/serde-rs/json/commit/4b1048d0ecc4d326d6657531689513f182a4f850"><code>4b1048d</code></a>
Merge pull request <a
href="https://redirect.github.com/serde-rs/json/issues/1183">#1183</a>
from serde-rs/arithmetic</li>
<li>Additional commits viewable in <a
href="https://github.com/serde-rs/json/compare/1.0.125...1.0.128">compare
view</a></li>
</ul>
</details>
<br />

Updates `libc` from 0.2.158 to 0.2.159
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/rust-lang/libc/releases">libc's
releases</a>.</em></p>
<blockquote>
<h2>0.2.159</h2>
<h3>Added</h3>
<ul>
<li>Android: add more <code>AT_*</code> constants in <a
href="https://redirect.github.com/rust-lang/libc/pull/3779">rust-lang/libc#3779</a></li>
<li>Apple: add missing <code>NOTE_*</code> constants in <a
href="https://redirect.github.com/rust-lang/libc/pull/3883">rust-lang/libc#3883</a></li>
<li>Hermit: add missing error numbers in <a
href="https://redirect.github.com/rust-lang/libc/pull/3858">rust-lang/libc#3858</a></li>
<li>Hurd: add <code>__timeval</code> for 64-bit support in <a
href="https://redirect.github.com/rust-lang/libc/pull/3786">rust-lang/libc#3786</a></li>
<li>Linux: add <code>epoll_pwait2</code> in <a
href="https://redirect.github.com/rust-lang/libc/pull/3868">rust-lang/libc#3868</a></li>
<li>Linux: add <code>mq_notify</code> in <a
href="https://redirect.github.com/rust-lang/libc/pull/3849">rust-lang/libc#3849</a></li>
<li>Linux: add missing <code>NFT_CT_*</code> constants in <a
href="https://redirect.github.com/rust-lang/libc/pull/3844">rust-lang/libc#3844</a></li>
<li>Linux: add the <code>fchmodat2</code> syscall in <a
href="https://redirect.github.com/rust-lang/libc/pull/3588">rust-lang/libc#3588</a></li>
<li>Linux: add the <code>mseal</code> syscall in <a
href="https://redirect.github.com/rust-lang/libc/pull/3798">rust-lang/libc#3798</a></li>
<li>OpenBSD: add <code>sendmmsg</code> and <code>recvmmsg</code> in <a
href="https://redirect.github.com/rust-lang/libc/pull/3831">rust-lang/libc#3831</a></li>
<li>Unix: add <code>IN6ADDR_ANY_INIT</code> and
<code>IN6ADDR_LOOPBACK_INIT</code> in <a
href="https://redirect.github.com/rust-lang/libc/pull/3693">rust-lang/libc#3693</a></li>
<li>VxWorks: add <code>S_ISVTX</code> in <a
href="https://redirect.github.com/rust-lang/libc/pull/3768">rust-lang/libc#3768</a></li>
<li>VxWorks: add <code>vxCpuLib</code> and <code>taskLib</code>
functions <a
href="https://redirect.github.com/rust-lang/libc/pull/3861">rust-lang/libc#3861</a></li>
<li>WASIp2: add definitions for <code>std::net</code> support in <a
href="https://redirect.github.com/rust-lang/libc/pull/3892">rust-lang/libc#3892</a></li>
</ul>
<h3>Fixed</h3>
<ul>
<li>Correctly handle version checks when <code>clippy-driver</code> is
used <a
href="https://redirect.github.com/rust-lang/libc/pull/3893">rust-lang/libc#3893</a></li>
</ul>
<h3>Changed</h3>
<ul>
<li>EspIdf: change signal constants to c_int in <a
href="https://redirect.github.com/rust-lang/libc/pull/3895">rust-lang/libc#3895</a></li>
<li>HorizonOS: update network definitions in <a
href="https://redirect.github.com/rust-lang/libc/pull/3863">rust-lang/libc#3863</a></li>
<li>Linux: combine <code>ioctl</code> APIs in <a
href="https://redirect.github.com/rust-lang/libc/pull/3722">rust-lang/libc#3722</a></li>
<li>WASI: enable CI testing in <a
href="https://redirect.github.com/rust-lang/libc/pull/3869">rust-lang/libc#3869</a></li>
<li>WASIp2: enable CI testing in <a
href="https://redirect.github.com/rust-lang/libc/pull/3870">rust-lang/libc#3870</a></li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/rust-lang/libc/blob/0.2.159/CHANGELOG.md">libc's
changelog</a>.</em></p>
<blockquote>
<h2><a
href="https://github.com/rust-lang/libc/compare/0.2.158...0.2.159">0.2.159</a>
- 2024-09-24</h2>
<h3>Added</h3>
<ul>
<li>Android: add more <code>AT_*</code> constants in <a
href="https://redirect.github.com/rust-lang/libc/pull/3779">rust-lang/libc#3779</a></li>
<li>Apple: add missing <code>NOTE_*</code> constants in <a
href="https://redirect.github.com/rust-lang/libc/pull/3883">rust-lang/libc#3883</a></li>
<li>Hermit: add missing error numbers in <a
href="https://redirect.github.com/rust-lang/libc/pull/3858">rust-lang/libc#3858</a></li>
<li>Hurd: add <code>__timeval</code> for 64-bit support in <a
href="https://redirect.github.com/rust-lang/libc/pull/3786">rust-lang/libc#3786</a></li>
<li>Linux: add <code>epoll_pwait2</code> in <a
href="https://redirect.github.com/rust-lang/libc/pull/3868">rust-lang/libc#3868</a></li>
<li>Linux: add <code>mq_notify</code> in <a
href="https://redirect.github.com/rust-lang/libc/pull/3849">rust-lang/libc#3849</a></li>
<li>Linux: add missing <code>NFT_CT_*</code> constants in <a
href="https://redirect.github.com/rust-lang/libc/pull/3844">rust-lang/libc#3844</a></li>
<li>Linux: add the <code>fchmodat2</code> syscall in <a
href="https://redirect.github.com/rust-lang/libc/pull/3588">rust-lang/libc#3588</a></li>
<li>Linux: add the <code>mseal</code> syscall in <a
href="https://redirect.github.com/rust-lang/libc/pull/3798">rust-lang/libc#3798</a></li>
<li>OpenBSD: add <code>sendmmsg</code> and <code>recvmmsg</code> in <a
href="https://redirect.github.com/rust-lang/libc/pull/3831">rust-lang/libc#3831</a></li>
<li>Unix: add <code>IN6ADDR_ANY_INIT</code> and
<code>IN6ADDR_LOOPBACK_INIT</code> in <a
href="https://redirect.github.com/rust-lang/libc/pull/3693">rust-lang/libc#3693</a></li>
<li>VxWorks: add <code>S_ISVTX</code> in <a
href="https://redirect.github.com/rust-lang/libc/pull/3768">rust-lang/libc#3768</a></li>
<li>VxWorks: add <code>vxCpuLib</code> and <code>taskLib</code>
functions <a
href="https://redirect.github.com/rust-lang/libc/pull/3861">rust-lang/libc#3861</a></li>
<li>WASIp2: add definitions for <code>std::net</code> support in <a
href="https://redirect.github.com/rust-lang/libc/pull/3892">rust-lang/libc#3892</a></li>
</ul>
<h3>Fixed</h3>
<ul>
<li>Correctly handle version checks when <code>clippy-driver</code> is
used <a
href="https://redirect.github.com/rust-lang/libc/pull/3893">rust-lang/libc#3893</a></li>
</ul>
<h3>Changed</h3>
<ul>
<li>EspIdf: change signal constants to c_int in <a
href="https://redirect.github.com/rust-lang/libc/pull/3895">rust-lang/libc#3895</a></li>
<li>HorizonOS: update network definitions in <a
href="https://redirect.github.com/rust-lang/libc/pull/3863">rust-lang/libc#3863</a></li>
<li>Linux: combine <code>ioctl</code> APIs in <a
href="https://redirect.github.com/rust-lang/libc/pull/3722">rust-lang/libc#3722</a></li>
<li>WASI: enable CI testing in <a
href="https://redirect.github.com/rust-lang/libc/pull/3869">rust-lang/libc#3869</a></li>
<li>WASIp2: enable CI testing in <a
href="https://redirect.github.com/rust-lang/libc/pull/3870">rust-lang/libc#3870</a></li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/rust-lang/libc/commit/7373a1abe57da20efae9fd2ca891d7b905c19e03"><code>7373a1a</code></a>
chore: release (<a
href="https://redirect.github.com/rust-lang/libc/issues/3862">#3862</a>)</li>
<li><a
href="https://github.com/rust-lang/libc/commit/48668be46be0dbc2d3dfcf942778c37a07d38a87"><code>48668be</code></a>
Merge pull request <a
href="https://redirect.github.com/rust-lang/libc/issues/3931">#3931</a>
from tgross35/backport-remove-tmp-file</li>
<li><a
href="https://github.com/rust-lang/libc/commit/28bb64b1fe678ca090f9af08d786949d53285940"><code>28bb64b</code></a>
Remove temporary file that was added by accident</li>
<li><a
href="https://github.com/rust-lang/libc/commit/a515d07dd95093bc1c3a7b716f0936d2d0b989db"><code>a515d07</code></a>
Merge pull request <a
href="https://redirect.github.com/rust-lang/libc/issues/3904">#3904</a>
from tgross35/backport-buildrs-fix</li>
<li><a
href="https://github.com/rust-lang/libc/commit/abcb8f87986c8f57a28c4f67d7939272f4f8cbad"><code>abcb8f8</code></a>
Simplify the RUSTC_WRAPPER check</li>
<li><a
href="https://github.com/rust-lang/libc/commit/507833559bd0bfe04b5139c1607c3dc3208174f5"><code>5078335</code></a>
Fix rustc version when <code>clippy-driver</code> is used</li>
<li><a
href="https://github.com/rust-lang/libc/commit/57a7d465fa69c85bb96c98c84762ada90ad02077"><code>57a7d46</code></a>
Merge pull request <a
href="https://redirect.github.com/rust-lang/libc/issues/3902">#3902</a>
from tgross35/backport-horizon-network</li>
<li><a
href="https://github.com/rust-lang/libc/commit/a3e88691a9a1a41867b0692b67cc50f5b1d39eb2"><code>a3e8869</code></a>
Revise network definitions for HorizonOS</li>
<li><a
href="https://github.com/rust-lang/libc/commit/fdd3a268960639b4714c2829976b87b374fa0f9f"><code>fdd3a26</code></a>
Merge pull request <a
href="https://redirect.github.com/rust-lang/libc/issues/3900">#3900</a>
from tgross35/espid-cherry-pick</li>
<li><a
href="https://github.com/rust-lang/libc/commit/35060e8eb0bd7a64722fc7ff8ef475f6b15384a9"><code>35060e8</code></a>
Merge pull request <a
href="https://redirect.github.com/rust-lang/libc/issues/3901">#3901</a>
from tgross35/backport-epoll_pwait2</li>
<li>Additional commits viewable in <a
href="https://github.com/rust-lang/libc/compare/0.2.158...0.2.159">compare
view</a></li>
</ul>
</details>
<br />

Updates `is_executable` from 1.0.1 to 1.0.3
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/fitzgen/is_executable/commit/cfe991224073cdab13ff6a8133d1cacd8182e21a"><code>cfe9912</code></a>
Bump to version 1.0.3</li>
<li><a
href="https://github.com/fitzgen/is_executable/commit/d6fcf2f526963b4e12ab063fca255bbe75bca178"><code>d6fcf2f</code></a>
Remove old test about README.md being in sync with module docs</li>
<li><a
href="https://github.com/fitzgen/is_executable/commit/95f27a6d3dae185ee1332728e959e4ff7c6890d9"><code>95f27a6</code></a>
Remove old CI</li>
<li><a
href="https://github.com/fitzgen/is_executable/commit/e70c103b81b5e5e7f25d7973605181cc622f2578"><code>e70c103</code></a>
Update badges in README</li>
<li><a
href="https://github.com/fitzgen/is_executable/commit/61d2e9ba8cf05a1410ca69fd157ca234c65a8af7"><code>61d2e9b</code></a>
Add github actions</li>
<li><a
href="https://github.com/fitzgen/is_executable/commit/001b334761623dcc0182dded9f1e3b949f7cf79a"><code>001b334</code></a>
Bump to version 1.0.2</li>
<li><a
href="https://github.com/fitzgen/is_executable/commit/fab168c19690b6247f9e983fd0e0d0d8599c3bef"><code>fab168c</code></a>
Merge pull request <a
href="https://redirect.github.com/fitzgen/is_executable/issues/14">#14</a>
from lucieleblanc/master</li>
<li><a
href="https://github.com/fitzgen/is_executable/commit/82f9c68782656eb9ec2fcad978fce3c9e60a3072"><code>82f9c68</code></a>
replace is_file() --&gt; exists() because symlinks are ok</li>
<li><a
href="https://github.com/fitzgen/is_executable/commit/441c1c7df30116f3a4a1b8a999e457816d77cf7a"><code>441c1c7</code></a>
add file existence check before reading extension</li>
<li><a
href="https://github.com/fitzgen/is_executable/commit/ea10f6b2f8456bdcc5300027c5605ff6089b371c"><code>ea10f6b</code></a>
Merge pull request <a
href="https://redirect.github.com/fitzgen/is_executable/issues/11">#11</a>
from davide125/exclude</li>
<li>Additional commits viewable in <a
href="https://github.com/fitzgen/is_executable/compare/v1.0.1...v1.0.3">compare
view</a></li>
</ul>
</details>
<br />

Updates `derive-new` from 0.6.0 to 0.7.0
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/nrc/derive-new/commit/6626d8f566ee523ead38fe789b171f1b46993e49"><code>6626d8f</code></a>
Update compiletest</li>
<li><a
href="https://github.com/nrc/derive-new/commit/1e024ddf396e06690c0b39baa5a4f996ae88404b"><code>1e024dd</code></a>
cargo update, etc.</li>
<li><a
href="https://github.com/nrc/derive-new/commit/3389ef278665f8e0be249b6f4bd3cbfc727160a8"><code>3389ef2</code></a>
Fix doc tests</li>
<li><a
href="https://github.com/nrc/derive-new/commit/bd4486d85de87d5a543a7604f4e8f136c8b0e973"><code>bd4486d</code></a>
implement <code>into</code> and <code>into_iter</code></li>
<li><a
href="https://github.com/nrc/derive-new/commit/a9230ace30ffc43836e0e49e42e1203c7f079732"><code>a9230ac</code></a>
fix tests</li>
<li><a
href="https://github.com/nrc/derive-new/commit/77cb8287d22ca3aff803577a49321886895a43ee"><code>77cb828</code></a>
Merge pull request <a
href="https://redirect.github.com/nrc/derive-new/issues/67">#67</a> from
Paragit-Solutions/implement-new-method-visibility</li>
<li><a
href="https://github.com/nrc/derive-new/commit/cacbadabd235a83e978fcd52d9ed83dffff43abd"><code>cacbada</code></a>
Merge pull request <a
href="https://redirect.github.com/nrc/derive-new/issues/66">#66</a> from
shellixyz/patch-1</li>
<li><a
href="https://github.com/nrc/derive-new/commit/d11f63160c0829dbf06a1aab30f431c9b58ecc37"><code>d11f631</code></a>
Add documentation</li>
<li><a
href="https://github.com/nrc/derive-new/commit/3311408f8fc4844e857708bf2a222c939ac1066d"><code>3311408</code></a>
Add visibility to test struct to test compilation and correct macro
expansion</li>
<li><a
href="https://github.com/nrc/derive-new/commit/61853b79702bae6d0ffa343718310f20463687a4"><code>61853b7</code></a>
Make the default visibility public</li>
<li>Additional commits viewable in <a
href="https://github.com/nrc/derive-new/compare/0.6.0...0.7">compare
view</a></li>
</ul>
</details>
<br />

Updates `async-trait` from 0.1.81 to 0.1.83
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/dtolnay/async-trait/releases">async-trait's
releases</a>.</em></p>
<blockquote>
<h2>0.1.83</h2>
<ul>
<li>Prevent needless_arbitrary_self_type lint being produced in
generated code (<a
href="https://redirect.github.com/dtolnay/async-trait/issues/278">#278</a>)</li>
</ul>
<h2>0.1.82</h2>
<ul>
<li>Prevent elided_named_lifetimes lint being produced in generated code
(<a
href="https://redirect.github.com/dtolnay/async-trait/issues/276">#276</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/dtolnay/async-trait/commit/e6b4d471c64156338fb87386b7a7ad8543c3a205"><code>e6b4d47</code></a>
Release 0.1.83</li>
<li><a
href="https://github.com/dtolnay/async-trait/commit/bfe8d617660237b27eee620181586a16ff2f6a25"><code>bfe8d61</code></a>
Merge pull request <a
href="https://redirect.github.com/dtolnay/async-trait/issues/278">#278</a>
from dtolnay/arbself</li>
<li><a
href="https://github.com/dtolnay/async-trait/commit/7bd974b3a4db2c3ab321de2976d09d3ea2b82348"><code>7bd974b</code></a>
Ignore needless_arbitrary_self_type clippy lint in generated code</li>
<li><a
href="https://github.com/dtolnay/async-trait/commit/b53b4e755402ef91d2104d40b8f303ad0c56d2f9"><code>b53b4e7</code></a>
Add regression test for issue 277</li>
<li><a
href="https://github.com/dtolnay/async-trait/commit/f8e5bb43181450a17068f160e8a51d410ede1705"><code>f8e5bb4</code></a>
Release 0.1.82</li>
<li><a
href="https://github.com/dtolnay/async-trait/commit/8fbf118de30d3d30416d5a2dff496513433171c4"><code>8fbf118</code></a>
Merge pull request <a
href="https://redirect.github.com/dtolnay/async-trait/issues/276">#276</a>
from dtolnay/elidednamed</li>
<li><a
href="https://github.com/dtolnay/async-trait/commit/6fa246a0546fc678c4812ccb59306b6b264c27a0"><code>6fa246a</code></a>
Ignore nightly's new elided_named_lifetimes lint in generated code</li>
<li><a
href="https://github.com/dtolnay/async-trait/commit/d542a0dd74f366995e5924edc2d6ac7661e5d9ca"><code>d542a0d</code></a>
Upload CI Cargo.lock for reproducing failures</li>
<li><a
href="https://github.com/dtolnay/async-trait/commit/8828c35a86442dd05b6ac3aab5f0bac769e246f0"><code>8828c35</code></a>
Sort dependency features in Cargo.toml</li>
<li><a
href="https://github.com/dtolnay/async-trait/commit/ba9793af3f3936e2373ab4c482bf49ac67009df8"><code>ba9793a</code></a>
Update ui test suite to nightly-2024-08-11</li>
<li>Additional commits viewable in <a
href="https://github.com/dtolnay/async-trait/compare/0.1.81...0.1.83">compare
view</a></li>
</ul>
</details>
<br />

Updates `autocfg` from 1.3.0 to 1.4.0
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/cuviper/autocfg/commit/d07df6624a4573803a29397c0ccf636aa0b3d153"><code>d07df66</code></a>
Merge pull request <a
href="https://redirect.github.com/cuviper/autocfg/issues/73">#73</a>
from cuviper/release-1.4.0</li>
<li><a
href="https://github.com/cuviper/autocfg/commit/f6066f016441c2a25e0fa0d9d0521b1a79b0e14c"><code>f6066f0</code></a>
Release 1.4.0</li>
<li><a
href="https://github.com/cuviper/autocfg/commit/8af60eca650aed24db3042dbd0a2e1f61016b95e"><code>8af60ec</code></a>
Merge pull request <a
href="https://redirect.github.com/cuviper/autocfg/issues/70">#70</a>
from Techcable/feature/rustc-check-cfg</li>
<li><a
href="https://github.com/cuviper/autocfg/commit/52a995b6723ae015fbed7312d56803492f01e10a"><code>52a995b</code></a>
Apply suggestions from code review</li>
<li><a
href="https://github.com/cuviper/autocfg/commit/a8703c163f5aa66819f515356530420955374386"><code>a8703c1</code></a>
Attempt rust 1.0 compat for ci/verify-check-cfg</li>
<li><a
href="https://github.com/cuviper/autocfg/commit/ac78be804dbcf9e616d69a93c0ba918adc6a003a"><code>ac78be8</code></a>
Add ci test crate for check-cfg</li>
<li><a
href="https://github.com/cuviper/autocfg/commit/0b4a7617ad0e6ccf271dac7ab920a731195fab32"><code>0b4a761</code></a>
Have emit_has methods delegate wherever possible</li>
<li><a
href="https://github.com/cuviper/autocfg/commit/546f7c6c1c0e25b2dca136675934348118f603d2"><code>546f7c6</code></a>
Fix minor doc issues</li>
<li><a
href="https://github.com/cuviper/autocfg/commit/e0e0f18f54fb60f9c42a01c6571edcdab4542db6"><code>e0e0f18</code></a>
Automatically emit <code>rustc-check-cfg</code> directives for
AutoCfg</li>
<li><a
href="https://github.com/cuviper/autocfg/commit/1953a17319e667dd2ead9a4eae0645ed939eef24"><code>1953a17</code></a>
Merge pull request <a
href="https://redirect.github.com/cuviper/autocfg/issues/72">#72</a>
from cuviper/pretty-way</li>
<li>Additional commits viewable in <a
href="https://github.com/cuviper/autocfg/compare/1.3.0...1.4.0">compare
view</a></li>
</ul>
</details>
<br />

Updates `backtrace` from 0.3.73 to 0.3.74
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/rust-lang/backtrace-rs/releases">backtrace's
releases</a>.</em></p>
<blockquote>
<h2>0.3.74</h2>
<h2>What's Changed</h2>
<ul>
<li>QNX Neutrino 7.0 support, thanks to <a
href="https://github.com/nyurik"><code>@​nyurik</code></a> in <a
href="https://redirect.github.com/rust-lang/backtrace-rs/pull/648">rust-lang/backtrace-rs#648</a></li>
<li>Cleaned up our Android support. This should massively improve
backtraces for ones with the API level sufficient to ship with
libunwind, etc. Unfortunately, it comes at the cost of dropping support
for older ones! Thanks to <a
href="https://github.com/fengys"><code>@​fengys</code></a> in <a
href="https://redirect.github.com/rust-lang/backtrace-rs/pull/656">rust-lang/backtrace-rs#656</a></li>
<li>Made PrintFmt, which was using the
<code>Enum::__NonExhaustiveVariant</code> pattern, use
<code>#[non_exhaustive]</code> for real. Don't @ me if you were matching
on that! Thanks to <a
href="https://github.com/nyurik"><code>@​nyurik</code></a> in <a
href="https://redirect.github.com/rust-lang/backtrace-rs/pull/651">rust-lang/backtrace-rs#651</a></li>
<li>Massively cleaned up the windows code! We moved from winapi to
windows-sys with windows-targets thanks to <a
href="https://github.com/CraftSpider"><code>@​CraftSpider</code></a> and
<a href="https://github.com/ChrisDenton"><code>@​ChrisDenton</code></a>
in
<ul>
<li>Don't cast HANDLE to usize and back by <a
href="https://github.com/CraftSpider"><code>@​CraftSpider</code></a> in
<a
href="https://redirect.github.com/rust-lang/backtrace-rs/pull/635">rust-lang/backtrace-rs#635</a></li>
<li>Switch from <code>winapi</code> to <code>windows-sys</code> by <a
href="https://github.com/CraftSpider"><code>@​CraftSpider</code></a> in
<a
href="https://redirect.github.com/rust-lang/backtrace-rs/pull/641">rust-lang/backtrace-rs#641</a></li>
<li>Update windows bindings and use windows-targets by <a
href="https://github.com/ChrisDenton"><code>@​ChrisDenton</code></a> in
<a
href="https://redirect.github.com/rust-lang/backtrace-rs/pull/653">rust-lang/backtrace-rs#653</a></li>
</ul>
</li>
<li>A bunch of updated dependencies. Thanks <a
href="https://github.com/djc"><code>@​djc</code></a> and <a
href="https://github.com/khuey"><code>@​khuey</code></a>!</li>
<li>Sorry if you were testing this code in miri! It started yelling
about sussy casts. A lot. We did a bunch of internal cleanups that
should make it quiet down, thanks to <a
href="https://github.com/workingjubilee"><code>@​workingjubilee</code></a>
in <a
href="https://redirect.github.com/rust-lang/backtrace-rs/pull/641">rust-lang/backtrace-rs#641</a></li>
<li>Uhhh we had to tweak <code>dl_iterate_phdr</code> in <a
href="https://redirect.github.com/rust-lang/backtrace-rs/pull/660">rust-lang/backtrace-rs#660</a>
after Android revealed it was... kind of unsound actually and not doing
things like checking for null pointers before making slices! WHOOPS!
Thanks to <a
href="https://github.com/saethlin"><code>@​saethlin</code></a> for
implementing detection for precisely that in rustc! It's really hard to
find soundness issues in inherited codebases like this one...</li>
</ul>
<h2>New Contributors</h2>
<ul>
<li><a
href="https://github.com/CraftSpider"><code>@​CraftSpider</code></a>
made their first contribution in <a
href="https://redirect.github.com/rust-lang/backtrace-rs/pull/635">rust-lang/backtrace-rs#635</a></li>
<li><a
href="https://github.com/fengys1996"><code>@​fengys1996</code></a> made
their first contribution in <a
href="https://redirect.github.com/rust-lang/backtrace-rs/pull/656">rust-lang/backtrace-rs#656</a></li>
<li><a href="https://github.com/djc"><code>@​djc</code></a> made their
first contribution in <a
href="https://redirect.github.com/rust-lang/backtrace-rs/pull/657">rust-lang/backtrace-rs#657</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/rust-lang/backtrace-rs/compare/0.3.73...0.3.74">https://github.com/rust-lang/backtrace-rs/compare/0.3.73...0.3.74</a></p>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/rust-lang/backtrace-rs/commit/38d49aa0395c50047ab26e418a0cb30d9955fb64"><code>38d49aa</code></a>
Merge pull request <a
href="https://redirect.github.com/rust-lang/backtrace-rs/issues/658">#658</a>
from workingjubilee/cut-0.3.74</li>
<li><a
href="https://github.com/rust-lang/backtrace-rs/commit/c1749ce9a8cc0105b9d224e66f9ce4632133c1ea"><code>c1749ce</code></a>
Cut backtrace 0.3.74</li>
<li><a
href="https://github.com/rust-lang/backtrace-rs/commit/230570f2dac80a601f5c0b30da00cc9480bd35eb"><code>230570f</code></a>
Merge pull request <a
href="https://redirect.github.com/rust-lang/backtrace-rs/issues/660">#660</a>
from workingjubilee/dont-unsoundly-iterate-phdr</li>
<li><a
href="https://github.com/rust-lang/backtrace-rs/commit/153f510013e9d486103dac7994d7f75205af397a"><code>153f510</code></a>
Do not destructure maybe-uninit fields</li>
<li><a
href="https://github.com/rust-lang/backtrace-rs/commit/38589464ed3a901794f5858ccbd7f996f6712f64"><code>3858946</code></a>
Revise dl_iterate_phdr callback to be sound-ish</li>
<li><a
href="https://github.com/rust-lang/backtrace-rs/commit/7d062c63749a4c07d9307c96b6cd9485ccd1ad18"><code>7d062c6</code></a><code>rust-lang/backtrace-rs#653</code></li>
<li><a
href="https://github.com/rust-lang/backtrace-rs/commit/fc37b22dc8a384d93f6b7b4817266eec6433875e"><code>fc37b22</code></a><code>rust-lang/backtrace-rs#657</code></li>
<li><a
href="https://github.com/rust-lang/backtrace-rs/commit/600beaa5074be0f40279584450d995c319061ce8"><code>600beaa</code></a><code>rust-lang/backtrace-rs#648</code></li>
<li><a
href="https://github.com/rust-lang/backtrace-rs/commit/84b6c1d56f4bd1b4297187db863c2db6d436c1cf"><code>84b6c1d</code></a><code>rust-lang/backtrace-rs#652</code></li>
<li><a
href="https://github.com/rust-lang/backtrace-rs/commit/95c3bacab9364620864208b651e77a524900480d"><code>95c3bac</code></a>
Make enum
<code>print::PrintFmt</code><code>rust-lang/backtrace-rs#651</code></li>
<li>Additional commits viewable in <a
href="https://github.com/rust-lang/backtrace-rs/compare/0.3.73...0.3.74">compare
view</a></li>
</ul>
</details>
<br />

Updates `bytes` from 1.7.1 to 1.7.2
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/tokio-rs/bytes/releases">bytes's
releases</a>.</em></p>
<blockquote>
<h2>Bytes 1.7.2</h2>
<h1>1.7.2 (September 17, 2024)</h1>
<h3>Fixed</h3>
<ul>
<li>Fix default impl of <code>Buf::{get_int, get_int_le}</code> (<a
href="https://redirect.github.com/tokio-rs/bytes/issues/732">#732</a>)</li>
</ul>
<h3>Documented</h3>
<ul>
<li>Fix double spaces in comments and doc comments (<a
href="https://redirect.github.com/tokio-rs/bytes/issues/731">#731</a>)</li>
</ul>
<h3>Internal changes</h3>
<ul>
<li>Ensure BytesMut::advance reduces capacity (<a
href="https://redirect.github.com/tokio-rs/bytes/issues/728">#728</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/tokio-rs/bytes/blob/master/CHANGELOG.md">bytes's
changelog</a>.</em></p>
<blockquote>
<h1>1.7.2 (September 17, 2024)</h1>
<h3>Fixed</h3>
<ul>
<li>Fix default impl of <code>Buf::{get_int, get_int_le}</code> (<a
href="https://redirect.github.com/tokio-rs/bytes/issues/732">#732</a>)</li>
</ul>
<h3>Documented</h3>
<ul>
<li>Fix double spaces in comments and doc comments (<a
href="https://redirect.github.com/tokio-rs/bytes/issues/731">#731</a>)</li>
</ul>
<h3>Internal changes</h3>
<ul>
<li>Ensure BytesMut::advance reduces capacity (<a
href="https://redirect.github.com/tokio-rs/bytes/issues/728">#728</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/tokio-rs/bytes/commit/d7c1d658d90c922eeee1dbc29bc6f6fd9a1a1a66"><code>d7c1d65</code></a>
chore: prepare bytes v1.7.2 (<a
href="https://redirect.github.com/tokio-rs/bytes/issues/736">#736</a>)</li>
<li><a
href="https://github.com/tokio-rs/bytes/commit/ac46ebdd464144cecd7463a96ca9eb347458ae94"><code>ac46ebd</code></a>
ci: update nightly to nightly-2024-09-15 (<a
href="https://redirect.github.com/tokio-rs/bytes/issues/734">#734</a>)</li>
<li><a
href="https://github.com/tokio-rs/bytes/commit/79fb85323cf4cf14d9b85f487b65fc147030cf4b"><code>79fb853</code></a>
fix: apply sign extension when decoding int (<a
href="https://redirect.github.com/tokio-rs/bytes/issues/732">#732</a>)</li>
<li><a
href="https://github.com/tokio-rs/bytes/commit/291df5acc94b82a48765e67eeb1c1a2074539e68"><code>291df5a</code></a>
Fix double spaces in comments and doc comments (<a
href="https://redirect.github.com/tokio-rs/bytes/issues/731">#731</a>)</li>
<li><a
href="https://github.com/tokio-rs/bytes/commit/ed7d5ff39e39c2802c0fa9e2fc308f6a3e0beda7"><code>ed7d5ff</code></a>
test: ensure BytesMut::advance reduces capacity (<a
href="https://redirect.github.com/tokio-rs/bytes/issues/728">#728</a>)</li>
<li>See full diff in <a
href="https://github.com/tokio-rs/bytes/compare/v1.7.1...v1.7.2">compare
view</a></li>
</ul>
</details>
<br />

Updates `cc` from 1.1.14 to 1.1.22
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/rust-lang/cc-rs/releases">cc's
releases</a>.</em></p>
<blockquote>
<h2>cc-v1.1.22</h2>
<h3>Other</h3>
<ul>
<li>Don't rerun if PATH changes (<a
href="https://redirect.github.com/rust-lang/cc-rs/pull/1215">#1215</a>)</li>
</ul>
<h2>cc-v1.1.21</h2>
<h3>Other</h3>
<ul>
<li>disable pic for targets that end in <code>-none</code> (<a
href="https://redirect.github.com/rust-lang/cc-rs/pull/1212">#1212</a>)</li>
</ul>
<h2>cc-v1.1.20</h2>
<h3>Other</h3>
<ul>
<li>Add buildcache as known Rust and C/C++ compiler wrapper (<a
href="https://redirect.github.com/rust-lang/cc-rs/pull/1209">#1209</a>)</li>
</ul>
<h2>cc-v1.1.19</h2>
<h3>Other</h3>
<ul>
<li>Add support arm64e-apple-darwin (<a
href="https://redirect.github.com/rust-lang/cc-rs/pull/1207">#1207</a>)</li>
</ul>
<h2>cc-v1.1.18</h2>
<h3>Other</h3>
<ul>
<li>Fixed unsoundness in <code>StderrForwarder::forward_available</code>
(<a
href="https://redirect.github.com/rust-lang/cc-rs/pull/1203">#1203</a>)</li>
</ul>
<h2>cc-v1.1.17</h2>
<h3>Fixed</h3>
<ul>
<li>fix finding toolchains when invoked by msbuild (<a
href="https://redirect.github.com/rust-lang/cc-rs/pull/1201">#1201</a>)</li>
</ul>
<h2>cc-v1.1.16</h2>
<h3>Other</h3>
<ul>
<li>Treat VxWorks wr-cc as a Gnu compiler (<a
href="https://redirect.github.com/rust-lang/cc-rs/pull/1198">#1198</a>)</li>
</ul>
<h2>cc-v1.1.15</h2>
<h3>Other</h3>
<ul>
<li>Add -mfloat-abi=hard as a default argument when using any
arm/thumb-none-eabihf target (<a
href="https://redirect.github.com/rust-lang/cc-rs/pull/1194">#1194</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/rust-lang/cc-rs/blob/main/CHANGELOG.md">cc's
changelog</a>.</em></p>
<blockquote>
<h2><a
href="https://github.com/rust-lang/cc-rs/compare/cc-v1.1.21...cc-v1.1.22">1.1.22</a>
- 2024-09-27</h2>
<h3>Other</h3>
<ul>
<li>Don't rerun if PATH changes (<a
href="https://redirect.github.com/rust-lang/cc-rs/pull/1215">#1215</a>)</li>
</ul>
<h2><a
href="https://github.com/rust-lang/cc-rs/compare/cc-v1.1.20...cc-v1.1.21">1.1.21</a>
- 2024-09-18</h2>
<h3>Other</h3>
<ul>
<li>disable pic for targets that end in <code>-none</code> (<a
href="https://redirect.github.com/rust-lang/cc-rs/pull/1212">#1212</a>)</li>
</ul>
<h2><a
href="https://github.com/rust-lang/cc-rs/compare/cc-v1.1.19...cc-v1.1.20">1.1.20</a>
- 2024-09-17</h2>
<h3>Other</h3>
<ul>
<li>Add buildcache as known Rust and C/C++ compiler wrapper (<a
href="https://redirect.github.com/rust-lang/cc-rs/pull/1209">#1209</a>)</li>
</ul>
<h2><a
href="https://github.com/rust-lang/cc-rs/compare/cc-v1.1.18...cc-v1.1.19">1.1.19</a>
- 2024-09-15</h2>
<h3>Other</h3>
<ul>
<li>Add support arm64e-apple-darwin (<a
href="https://redirect.github.com/rust-lang/cc-rs/pull/1207">#1207</a>)</li>
</ul>
<h2><a
href="https://github.com/rust-lang/cc-rs/compare/cc-v1.1.17...cc-v1.1.18">1.1.18</a>
- 2024-09-07</h2>
<h3>Other</h3>
<ul>
<li>Fixed unsoundness in <code>StderrForwarder::forward_available</code>
(<a
href="https://redirect.github.com/rust-lang/cc-rs/pull/1203">#1203</a>)</li>
</ul>
<h2><a
href="https://github.com/rust-lang/cc-rs/compare/cc-v1.1.16...cc-v1.1.17">1.1.17</a>
- 2024-09-06</h2>
<h3>Fixed</h3>
<ul>
<li>fix finding toolchains when invoked by msbuild (<a
href="https://redirect.github.com/rust-lang/cc-rs/pull/1201">#1201</a>)</li>
</ul>
<h2><a
href="https://github.com/rust-lang/cc-rs/compare/cc-v1.1.15...cc-v1.1.16">1.1.16</a>
- 2024-09-04</h2>
<h3>Other</h3>
<ul>
<li>Treat VxWorks wr-cc as a Gnu compiler (<a
href="https://redirect.github.com/rust-lang/cc-rs/pull/1198">#1198</a>)</li>
</ul>
<h2><a
href="https://github.com/rust-lang/cc-rs/compare/cc-v1.1.14...cc-v1.1.15">1.1.15</a>
- 2024-08-26</h2>
<h3>Other</h3>
<ul>
<li>Add -mfloat-abi=hard as a default argument when using any
arm/thumb-none-eabihf target (<a
href="https://redirect.github.com/rust-lang/cc-rs/pull/1194">#1194</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/rust-lang/cc-rs/commit/5f5e1c8c18b53aa1524f720ce21b5a7986a0bf6b"><code>5f5e1c8</code></a>
chore: release (<a
href="https://redirect.github.com/rust-lang/cc-rs/issues/1216">#1216</a>)</li>
<li><a
href="https://github.com/rust-lang/cc-rs/commit/71c672b4afa2f9b6e5046a963d3b5bc1f9ccd2f8"><code>71c672b</code></a>
Don't rerun if PATH changes (<a
href="https://redirect.github.com/rust-lang/cc-rs/issues/1215">#1215</a>)</li>
<li><a
href="https://github.com/rust-lang/cc-rs/commit/748b777e553af972fb0484ece2626beaa354e0a2"><code>748b777</code></a>
chore: release (<a
href="https://redirect.github.com/rust-lang/cc-rs/issues/1213">#1213</a>)</li>
<li><a
href="https://github.com/rust-lang/cc-rs/commit/270ec653371a12498c3a338fb8b4a5d35e8388c6"><code>270ec65</code></a>
disable pic for targets that end in <code>-none</code> (<a
href="https://redirect.github.com/rust-lang/cc-rs/issues/1212">#1212</a>)</li>
<li><a
href="https://github.com/rust-lang/cc-rs/commit/92a5e28c084aefc101d2f71f236614d9fcaa1f9e"><code>92a5e28</code></a>
chore: release (<a
href="https://redirect.github.com/rust-lang/cc-rs/issues/1210">#1210</a>)</li>
<li><a
href="https://github.com/rust-lang/cc-rs/commit/dab5d7adb4c090ac9d8650e7d97897a711ac7a14"><code>dab5d7a</code></a>
Add buildcache as known Rust and C/C++ compiler wrapper (<a
href="https://redirect.github.com/rust-lang/cc-rs/issues/1209">#1209</a>)</li>
<li><a
href="https://github.com/rust-lang/cc-rs/commit/c0b3eae28300fc8b36eb3a0b519ef4083f1a129e"><code>c0b3eae</code></a>
chore: release (<a
href="https://redirect.github.com/rust-lang/cc-rs/issues/1208">#1208</a>)</li>
<li><a
href="https://github.com/rust-lang/cc-rs/commit/278a606afb79b00cfe7a1372dbaa3529ecce3dc4"><code>278a606</code></a>
Add support arm64e-apple-darwin (<a
href="https://redirect.github.com/rust-lang/cc-rs/issues/1207">#1207</a>)</li>
<li><a
href="https://github.com/rust-lang/cc-rs/commit/668facdbbcade9ebfb48c8ea0b658fc2688c4e5c"><code>668facd</code></a>
chore: release (<a
href="https://redirect.github.com/rust-lang/cc-rs/issues/1204">#1204</a>)</li>
<li><a
href="https://github.com/rust-lang/cc-rs/commit/5e161c6f4452fe63985bdfc78462ceda94c99805"><code>5e161c6</code></a>
Fixed unsoundness in <code>StderrForwarder::forward_available</code> (<a
href="https://redirect.github.com/rust-lang/cc-rs/issues/1203">#1203</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/rust-lang/cc-rs/compare/cc-v1.1.14...cc-v1.1.22">compare
view</a></li>
</ul>
</details>
<br />

Updates `clap_builder` from 4.5.15 to 4.5.18
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/clap-rs/clap/releases">clap_builder's
releases</a>.</em></p>
<blockquote>
<h2>v4.5.18</h2>
<h2>[4.5.18] - 2024-09-20</h2>
<h3>Features</h3>
<ul>
<li><em>(builder)</em> Expose <code>Arg::get_display_order</code> and
<code>Command::get_display_order</code></li>
</ul>
<h2>v4.5.17</h2>
<h2>[4.5.17] - 2024-09-04</h2>
<h3>Fixes</h3>
<ul>
<li><em>(help)</em> Style required argument groups</li>
<li><em>(derive)</em> Improve error messages when unsupported fields are
used</li>
</ul>
<h2>v4.5.16</h2>
<h2>[4.5.16] - 2024-08-15</h2>
<h3>Fixes</h3>
<ul>
<li><em>(derive)</em> Improve error messages when <code>derive</code>
feature is missing</li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/clap-rs/clap/blob/master/CHANGELOG.md">clap_builder's
changelog</a>.</em></p>
<blockquote>
<h2>[4.5.18] - 2024-09-20</h2>
<h3>Features</h3>
<ul>
<li><em>(builder)</em> Expose <code>Arg::get_display_order</code> and
<code>Command::get_display_order</code></li>
</ul>
<h2>[4.5.17] - 2024-09-04</h2>
<h3>Fixes</h3>
<ul>
<li><em>(help)</em> Style required argument groups</li>
<li><em>(derive)</em> Improve error messages when unsupported fields are
used</li>
</ul>
<h2>[4.5.16] - 2024-08-15</h2>
<h3>Fixes</h3>
<ul>
<li><em>(derive)</em> Improve error messages when <code>derive</code>
feature is missing</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/clap-rs/clap/commit/0d142f6c04a702b791d2dfec8327661ba1b6d16c"><code>0d142f6</code></a>
chore: Release</li>
<li><a
href="https://github.com/clap-rs/clap/commit/0facf1f370e7966a4d97bce56d1d10ca4c80d0ae"><code>0facf1f</code></a>
docs: Update changelog</li>
<li><a
href="https://github.com/clap-rs/clap/commit/ee6af99c6c5e239c0f2c92f9d1baf8aa3bb4af90"><code>ee6af99</code></a>
Merge pull request <a
href="https://redirect.github.com/clap-rs/clap/issues/5743">#5743</a>
from epage/sort</li>
<li><a
href="https://github.com/clap-rs/clap/commit/232ee106615e997f0841bb3de97eed126b929fe3"><code>232ee10</code></a>
fix(complete): Use existing display order for Arg/Command</li>
<li><a
href="https://github.com/clap-rs/clap/commit/c6b5d627a0c17527630e4086a4fe83589365d1f0"><code>c6b5d62</code></a>
feat(builder): Expose get_display_order</li>
<li><a
href="https://github.com/clap-rs/clap/commit/67d9fef9cee8f1b297aed73e6d95f78744b43a27"><code>67d9fef</code></a>
feat(complete): Give control over display order</li>
<li><a
href="https://github.com/clap-rs/clap/commit/59a61e188fbb9999db52f567e3951d3720204084"><code>59a61e1</code></a>
refactor(complete): Pull out common candidate code</li>
<li><a
href="https://github.com/clap-rs/clap/commit/144879194081212046d5566572bfa15ea9bcca35"><code>1448791</code></a>
fix(complete): Specify tags for built-in candiates</li>
<li><a
href="https://github.com/clap-rs/clap/commit/a4aa5dffdf46a2975f2b2d51ce7e618e19250ead"><code>a4aa5df</code></a>
feat(complete): Group by tag</li>
<li><a
href="https://github.com/clap-rs/clap/commit/a126149a809f01586ccb6d9299eb2fc2c87d8fe0"><code>a126149</code></a>
refactor(complete): Remove redundant dedup</li>
<li>Additional commits viewable in <a
href="https://github.com/clap-rs/clap/compare/v4.5.15...v4.5.18">compare
view</a></li>
</ul>
</details>
<br />

Updates `clap_derive` from 4.5.13 to 4.5.18
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/clap-rs/clap/releases">clap_derive's
releases</a>.</em></p>
<blockquote>
<h2>v4.5.18</h2>
<h2>[4.5.18] - 2024-09-20</h2>
<h3>Features</h3>
<ul>
<li><em>(builder)</em> Expose <code>Arg::get_display_order</code> and
<code>Command::get_display_order</code></li>
</ul>
<h2>v4.5.17</h2>
<h2>[4.5.17] - 2024-09-04</h2>
<h3>Fixes</h3>
<ul>
<li><em>(help)</em> Style required argument groups</li>
<li><em>(derive)</em> Improve error messages when unsupported fields are
used</li>
</ul>
<h2>v4.5.16</h2>
<h2>[4.5.16] - 2024-08-15</h2>
<h3>Fixes</h3>
<ul>
<li><em>(derive)</em> Improve error messages when <code>derive</code>
feature is missing</li>
</ul>
<h2>v4.5.15</h2>
<h2>[4.5.15] - 2024-08-10</h2>
<h3>Compatiblity</h3>
<ul>
<li><em>(unstable-ext)</em> <code>Arg::remove</code> changed return
types</li>
</ul>
<h3>Fixes</h3>
<ul>
<li><em>(unstable-ext)</em> Make <code>Arg::remove</code> return the
removed item</li>
</ul>
<h2>v4.5.14</h2>
<h2>[4.5.14] - 2024-08-08</h2>
<h3>Features</h3>
<ul>
<li><em>(unstable-ext)</em> Added <code>Arg::add</code> for attaching
arbitrary state, like completion hints, to <code>Arg</code> without
<code>Arg</code> knowing about it</li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/clap-rs/clap/blob/master/CHANGELOG.md">clap_derive's
changelog</a>.</em></p>
<blockquote>
<h2>[4.5.18] - 2024-09-20</h2>
<h3>Features</h3>
<ul>
<li><em>(builder)</em> Expose <code>Arg::get_display_order</code> and
<code>Command::get_display_order</code></li>
</ul>
<h2>[4.5.17] - 2024-09-04</h2>
<h3>Fixes</h3>
<ul>
<li><em>(help)</em> Style required argument groups</li>
<li><em>(derive)</em> Improve error messages when unsupported fields are
used</li>
</ul>
<h2>[4.5.16] - 2024-08-15</h2>
<h3>Fixes</h3>
<ul>
<li><em>(derive)</em> Improve error messages when <code>derive</code>
feature is missing</li>
</ul>
<h2>[4.5.15] - 2024-08-10</h2>
<h3>Compatiblity</h3>
<ul>
<li><em>(unstable-ext)</em> <code>Arg::remove</code> changed return
types</li>
</ul>
<h3>Fixes</h3>
<ul>
<li><em>(unstable-ext)</em> Make <code>Arg::remove</code> return the
removed item</li>
</ul>
<h2>[4.5.14] - 2024-08-08</h2>
<h3>Features</h3>
<ul>
<li><em>(unstable-ext)</em> Added <code>Arg::add</code> for attaching
arbitrary state, like completion hints, to <code>Arg</code> without
<code>Arg</code> knowing about it</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/clap-rs/clap/commit/0d142f6c04a702b791d2dfec8327661ba1b6d16c"><code>0d142f6</code></a>
chore: Release</li>
<li><a
href="https://github.com/clap-rs/clap/commit/0facf1f370e7966a4d97bce56d1d10ca4c80d0ae"><code>0facf1f</code></a>
docs: Update changelog</li>
<li><a
href="https://github.com/clap-rs/clap/commit/ee6af99c6c5e239c0f2c92f9d1baf8aa3bb4af90"><code>ee6af99</code></a>
Merge pull request <a
href="https://redirect.github.com/clap-rs/clap/issues/5743">#5743</a>
from epage/sort</li>
<li><a
href="https://github.com/clap-rs/clap/commit/232ee106615e997f0841bb3de97eed126b929fe3"><code>232ee10</code></a>
fix(complete): Use existing display order for Arg/Command</li>
<li><a
href="https://github.com/clap-rs/clap/commit/c6b5d627a0c17527630e4086a4fe83589365d1f0"><code>c6b5d62</code></a>
feat(builder): Expose get_display_order</li>
<li><a
href="https://github.com/clap-rs/clap/commit/67d9fef9cee8f1b297aed73e6d95f78744b43a27"><code>67d9fef</code></a>
feat(complete): Give control over display order</li>
<li><a
href="https://github.com/clap-rs/clap/commit/59a61e188fbb9999db52f567e3951d3720204084"><code>59a61e1</code></a>
refactor(complete): Pull out common candidate code</li>
<li><a
href="https://github.com/clap-rs/clap/commit/144879194081212046d5566572bfa15ea9bcca35"><code>1448791</code></a>
fix(complete): Specify tags for built-in candiates</li>
<li><a
href="https://github.com/clap-rs/clap/commit/a4aa5dffdf46a2975f2b2d51ce7e618e19250ead"><code>a4aa5df</code></a>
feat(complete): Group by tag</li>
<li><a
href="https://github.com/clap-rs/clap/commit/a126149a809f01586ccb6d9299eb2fc2c87d8fe0"><code>a126149</code></a>
refactor(complete): Remove redundant dedup</li>
<li>Additional commits viewable in <a
href="https://github.com/clap-rs/clap/compare/v4.5.13...v4.5.18">compare
view</a></li>
</ul>
</details>
<br />

Updates `const_format_proc_macros` from 0.2.32 to 0.2.33
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/rodrimati1992/const_format_crates/blob/master/Changelog.md">const_format_proc_macros's
changelog</a>.</em></p>
<blockquote>
<h3>0.2.33</h3>
<p>Fixed Rust Analyzer style warning for assertion macros.</p>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li>See full diff in <a
href="https://github.com/rodrimati1992/const_format_crates/commits">compare
view</a></li>
</ul>
</details>
<br />

Updates `cpufeatures` from 0.2.13 to 0.2.14
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/RustCrypto/utils/commit/6a87dce97c9f927bea999ab957ccb6bc60a6c36f"><code>6a87dce</code></a>
cpufeatures v0.2.14 (<a
href="https://redirect.github.com/RustCrypto/utils/issues/1104">#1104</a>)</li>
<li><a
href="https://github.com/RustCrypto/utils/commit/4be67893ccece4823b606c5e29eccd44f7e07450"><code>4be6789</code></a>
aarch64-dit: initial crate (<a
href="https://redirect.github.com/RustCrypto/utils/issues/1102">#1102</a>)</li>
<li><a
href="https://github.com/RustCrypto/utils/commit/141756093ae5ee316af9cd3b459d4c5225bc86dd"><code>1417560</code></a>
README.md(s): use img.shields.io crate version badges</li>
<li><a
href="https://github.com/RustCrypto/utils/commit/cfa21ea50a22df26a52e17649e203e0c2657154d"><code>cfa21ea</code></a>
cpufeatures: add DIT support for AArch64 Linux targets (<a
href="https://redirect.github.com/RustCrypto/utils/issues/1101">#1101</a>)</li>
<li><a
href="https://github.com/RustCrypto/utils/commit/1ad40787ec88039f829144ef59b7bc506eaf07ed"><code>1ad4078</code></a>
cpufeatures: add support for DIT detection on Apple silicon (<a
href="https://redirect.github.com/RustCrypto/utils/issues/1100">#1100</a>)</li>
<li><a
href="https://github.com/RustCrypto/utils/commit/5d46aba5ef3720e854f48d93243c247e4611b125"><code>5d46aba</code></a>
block-buffer: release v0.11.0-rc.1 (<a
href="https://redirect.github.com/RustCrypto/utils/issues/1098">#1098</a>)</li>
<li>See full diff in <a
href="https://github.com/RustCrypto/utils/compare/cpufeatures-v0.2.13...cpufeatures-v0.2.14">compare
view</a></li>
</ul>
</details>
<br />

Updates `fastrand` from 2.1.0 to 2.1.1
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/smol-rs/fastrand/releases">fastrand's
releases</a>.</em></p>
<blockquote>
<h2>v2.1.1</h2>
<ul>
<li>Remove support for 128-bit targets, as they are not supported by
rustc yet. (<a
href="https://redirect.github.com/smol-rs/fastrand/issues/87">#87</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/smol-rs/fastrand/blob/master/CHANGELOG.md">fastrand's
changelog</a>.</em></p>
<blockquote>
<h1>Version 2.1.1</h1>
<ul>
<li>Remove support for 128-bit targets, as they are not supported by
rustc yet. (<a
href="https://redirect.github.com/smol-rs/fastrand/issues/87">#87</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/smol-rs/fastrand/commit/9d1a66fe46cee30e6c716812a9df467c653fa290"><code>9d1a66f</code></a>
v2.1.1</li>
<li><a
href="https://github.com/smol-rs/fastrand/commit/d05504dee3e2ec359fca62db9353de2ad3dfff40"><code>d05504d</code></a>
bugfix: Remove 128-bit value generator</li>
<li><a
href="https://github.com/smol-rs/fastrand/commit/7e60c7f688f9be3dcd4f59f216c87dac88ca2902"><code>7e60c7f</code></a>
chore: Forgot to bump the version</li>
<li>See full diff in <a
href="https://github.com/smol-rs/fastrand/compare/v2.1.0...v2.1.1">compare
view</a></li>
</ul>
</details>
<br />

Updates `flate2` from 1.0.32 to 1.0.34
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/rust-lang/flate2-rs/releases">flate2's
releases</a>.</em></p>
<blockquote>
<h2>1.0.34</h2>
<h2>What's Changed</h2>
<ul>
<li>Add minimum build test back in to CI by <a
href="https://github.com/jongiddy"><code>@​jongiddy</code></a> in <a
href="https://redirect.github.com/rust-lang/flate2-rs/pull/426">rust-lang/flate2-rs#426</a></li>
<li>docs: fix compression level range from 0-9 to 0-10 by <a
href="https://github.com/ByteBaker"><code>@​ByteBaker</code></a> in <a
href="https://redirect.github.com/rust-lang/flate2-rs/pull/427">rust-lang/flate2-rs#427</a></li>
<li>Document backend differences in compression levels by <a
href="https://github.com/Shnatsel"><code>@​Shnatsel</code></a> in <a
href="https://redirect.github.com/rust-lang/flate2-rs/pull/430">rust-lang/flate2-rs#430</a></li>
<li>Upgrade zlib-rs to 0.3.0 to get multiple bugfixes by <a
href="https://github.com/Shnatsel"><code>@​Shnatsel</code></a> in <a
href="https://redirect.github.com/rust-lang/flate2-rs/pull/428">rust-lang/flate2-rs#428</a></li>
<li>Better wording in compression level docs by <a
href="https://github.com/Shnatsel"><code>@​Shnatsel</code></a> in <a
href="https://redirect.github.com/rust-lang/flate2-rs/pull/431">rust-lang/flate2-rs#431</a></li>
</ul>
<h2>New Contributors</h2>
<ul>
<li><a href="https://github.com/ByteBaker"><code>@​ByteBaker</code></a>
made their first contribution in <a
href="https://redirect.github.com/rust-lang/flate2-rs/pull/427">rust-lang/flate2-rs#427</a></li>
<li><a href="https://github.com/Shnatsel"><code>@​Shnatsel</code></a>
made their first contribution in <a
href="https://redirect.github.com/rust-lang/flate2-rs/pull/430">rust-lang/flate2-rs#430</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/rust-lang/flate2-rs/compare/1.0.33...1.0.34">https://github.com/rust-lang/flate2-rs/compare/1.0.33...1.0.34</a></p>
<h2>1.0.33 - fix minimal manifest versions</h2>
<h2>What's Changed</h2>
<ul>
<li>Fix msrv: Run msrv checks with minimal versions by <a
href="https://github.com/NobodyXu"><code>@​NobodyXu</code></a> in <a
href="https://redirect.github.com/rust-lang/flate2-rs/pull/425">rust-lang/flate2-rs#425</a></li>
</ul>
<h2>New Contributors</h2>
<ul>
<li><a href="https://github.com/NobodyXu"><code>@​NobodyXu</code></a>
made their first contribution in <a
href="https://redirect.github.com/rust-lang/flate2-rs/pull/425">rust-lang/flate2-rs#425</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/rust-lang/flate2-rs/compare/1.0.32...1.0.33">https://github.com/rust-lang/flate2-rs/compare/1.0.32...1.0.33</a></p>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/rust-lang/flate2-rs/commit/1a28821dc116dac14178858be056e4a58ef8f501"><code>1a28821</code></a>
Merge pull request <a
href="https://redirect.github.com/rust-lang/flate2-rs/issues/431">#431</a>
from Shnatsel/better-wording</li>
<li><a
href="https://github.com/rust-lang/flate2-rs/commit/2c29780e5093b10c21954384cd97243770376814"><code>2c29780</code></a>
Merge pull request <a
href="https://redirect.github.com/rust-lang/flate2-rs/issues/428">#428</a>
from Shnatsel/upgrade-zlib-rs</li>
<li><a
href="https://github.com/rust-lang/flate2-rs/commit/423981aede8670a51d2c3aa657ae528152c0f64e"><code>423981a</code></a>
Better wording in compression level docs</li>
<li><a
href="https://github.com/rust-lang/flate2-rs/commit/da5c8cfd917b0ec2aeacc2e514b27b6bd50726e4"><code>da5c8cf</code></a>
Bump version</li>
<li><a
href="https://github.com/rust-lang/flate2-rs/commit/eeee4c641187628ec8676ffb24300c5da6bfb066"><code>eeee4c6</code></a>
Merge pull request <a
href="https://redirect.github.com/rust-lang/flate2-rs/issues/430">#430</a>
from Shnatsel/detailed-level-docs</li>
<li><a
href="https://github.com/rust-lang/flate2-rs/commit/731df32113188f3372367402b9ea2b…
kutemeikito added a commit to kutemeikito/KernelSU that referenced this pull request Sep 30, 2024
* 'main' of https://github.com/tiann/KernelSU:
  build(deps): bump the npm group across 1 directory with 28 updates (tiann#2097)
  build(deps): bump the crates group across 1 directory with 32 updates (tiann#2098)
  manager: Insets stuffs for Android 15 (tiann#2100)
  api: spawn CallbackList use UiThreadHandler::runAndWait executor (tiann#2096)

Signed-off-by: Edwiin Kusuma Jaya <[email protected]>
kutemeikito added a commit to kutemeikito/KernelSU that referenced this pull request Sep 30, 2024
* 'main' of https://github.com/tiann/KernelSU:
  build(deps): bump the npm group across 1 directory with 28 updates (tiann#2097)
  build(deps): bump the crates group across 1 directory with 32 updates (tiann#2098)
  manager: Insets stuffs for Android 15 (tiann#2100)
  api: spawn CallbackList use UiThreadHandler::runAndWait executor (tiann#2096)

Signed-off-by: Edwiin Kusuma Jaya <[email protected]>
LeCmnGend pushed a commit to LeCmnGend/KernelSU that referenced this pull request Oct 1, 2024
…tiann#2098)

Bumps the crates group with 25 updates in the /userspace/ksud directory:

| Package | From | To |
| --- | --- | --- |
| [anyhow](https://github.com/dtolnay/anyhow) | `1.0.86` | `1.0.89` |
| [clap](https://github.com/clap-rs/clap) | `4.5.16` | `4.5.18` |
| [const_format](https://github.com/rodrimati1992/const_format_crates) |
`0.2.32` | `0.2.33` |
| [serde](https://github.com/serde-rs/serde) | `1.0.208` | `1.0.210` |
| [serde_json](https://github.com/serde-rs/json) | `1.0.125` | `1.0.128`
|
| [libc](https://github.com/rust-lang/libc) | `0.2.158` | `0.2.159` |
| [is_executable](https://github.com/fitzgen/is_executable) | `1.0.1` |
`1.0.3` |
| [derive-new](https://github.com/nrc/derive-new) | `0.6.0` | `0.7.0` |
| [async-trait](https://github.com/dtolnay/async-trait) | `0.1.81` |
`0.1.83` |
| [autocfg](https://github.com/cuviper/autocfg) | `1.3.0` | `1.4.0` |
| [backtrace](https://github.com/rust-lang/backtrace-rs) | `0.3.73` |
`0.3.74` |
| [bytes](https://github.com/tokio-rs/bytes) | `1.7.1` | `1.7.2` |
| [cc](https://github.com/rust-lang/cc-rs) | `1.1.14` | `1.1.22` |
| [cpufeatures](https://github.com/RustCrypto/utils) | `0.2.13` |
`0.2.14` |
| [fastrand](https://github.com/smol-rs/fastrand) | `2.1.0` | `2.1.1` |
| [flate2](https://github.com/rust-lang/flate2-rs) | `1.0.32` | `1.0.34`
|
| [iana-time-zone](https://github.com/strawlab/iana-time-zone) |
`0.1.60` | `0.1.61` |
| [indexmap](https://github.com/indexmap-rs/indexmap) | `2.4.0` |
`2.5.0` |
| [object](https://github.com/gimli-rs/object) | `0.36.3` | `0.36.4` |
| [syn](https://github.com/dtolnay/syn) | `2.0.75` | `2.0.77` |
| [thiserror](https://github.com/dtolnay/thiserror) | `1.0.63` |
`1.0.64` |
| [tokio](https://github.com/tokio-rs/tokio) | `1.39.3` | `1.40.0` |
| [unicode-ident](https://github.com/dtolnay/unicode-ident) | `1.0.12` |
`1.0.13` |
| [unicode-width](https://github.com/unicode-rs/unicode-width) |
`0.1.13` | `0.1.14` |
| [unicode-xid](https://github.com/unicode-rs/unicode-xid) | `0.2.5` |
`0.2.6` |


Updates `anyhow` from 1.0.86 to 1.0.89
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/dtolnay/anyhow/releases">anyhow's
releases</a>.</em></p>
<blockquote>
<h2>1.0.89</h2>
<ul>
<li>Make anyhow::Error's <code>UnwindSafe</code> and
<code>RefUnwindSafe</code> impl consistently available between versions
of Rust newer and older than 1.72 (<a
href="https://redirect.github.com/dtolnay/anyhow/issues/386">#386</a>)</li>
</ul>
<h2>1.0.88</h2>
<ul>
<li>Documentation improvements</li>
</ul>
<h2>1.0.87</h2>
<ul>
<li>Support more APIs, including <code>Error::new</code> and
<code>Error::chain</code>, in no-std mode on Rust 1.81+ (<a
href="https://redirect.github.com/dtolnay/anyhow/issues/383">#383</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/dtolnay/anyhow/commit/9d3fb6d0968bd9f95a0d8bbc5269eb2496880510"><code>9d3fb6d</code></a>
Release 1.0.89</li>
<li><a
href="https://github.com/dtolnay/anyhow/commit/830c399126c1db902681130f5c4273d93767b990"><code>830c399</code></a>
Merge pull request <a
href="https://redirect.github.com/dtolnay/anyhow/issues/386">#386</a>
from dtolnay/unwindsafe</li>
<li><a
href="https://github.com/dtolnay/anyhow/commit/8454be372f2a7832436d7021b8f2f0a96db558b3"><code>8454be3</code></a>
Ensure UnwindSafe even with &quot;backtrace&quot; feature enabled and
old Rust</li>
<li><a
href="https://github.com/dtolnay/anyhow/commit/a85e414bf555ed961f59c2c69410e7b5f706df65"><code>a85e414</code></a>
Add more autotraits tests</li>
<li><a
href="https://github.com/dtolnay/anyhow/commit/139f266b903ac2eab462292495f864740446dcdc"><code>139f266</code></a>
Release 1.0.88</li>
<li><a
href="https://github.com/dtolnay/anyhow/commit/aa3ab2b9f0a8cdf4b54dae58d39a2446c5eecbb2"><code>aa3ab2b</code></a>
Merge pull request <a
href="https://redirect.github.com/dtolnay/anyhow/issues/385">#385</a>
from dtolnay/docnostd</li>
<li><a
href="https://github.com/dtolnay/anyhow/commit/44c37674d35a0899fde03ae2fdaeee0bd4c38501"><code>44c3767</code></a>
Update documentation on no-std error type conversions</li>
<li><a
href="https://github.com/dtolnay/anyhow/commit/afe93e7b167d069ac79f2c7f363b919d3793e6ce"><code>afe93e7</code></a>
Release 1.0.87</li>
<li><a
href="https://github.com/dtolnay/anyhow/commit/d58fa4b282c1149bd121419dd359eb8caf2c113d"><code>d58fa4b</code></a>
Fix outdated html_root_url</li>
<li><a
href="https://github.com/dtolnay/anyhow/commit/c18d80743cead05bd75cf2e310e7a00c515facb9"><code>c18d807</code></a>
Disable unused doc_cfg feature</li>
<li>Additional commits viewable in <a
href="https://github.com/dtolnay/anyhow/compare/1.0.86...1.0.89">compare
view</a></li>
</ul>
</details>
<br />

Updates `clap` from 4.5.16 to 4.5.18
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/clap-rs/clap/releases">clap's
releases</a>.</em></p>
<blockquote>
<h2>v4.5.18</h2>
<h2>[4.5.18] - 2024-09-20</h2>
<h3>Features</h3>
<ul>
<li><em>(builder)</em> Expose <code>Arg::get_display_order</code> and
<code>Command::get_display_order</code></li>
</ul>
<h2>v4.5.17</h2>
<h2>[4.5.17] - 2024-09-04</h2>
<h3>Fixes</h3>
<ul>
<li><em>(help)</em> Style required argument groups</li>
<li><em>(derive)</em> Improve error messages when unsupported fields are
used</li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/clap-rs/clap/blob/master/CHANGELOG.md">clap's
changelog</a>.</em></p>
<blockquote>
<h2>[4.5.18] - 2024-09-20</h2>
<h3>Features</h3>
<ul>
<li><em>(builder)</em> Expose <code>Arg::get_display_order</code> and
<code>Command::get_display_order</code></li>
</ul>
<h2>[4.5.17] - 2024-09-04</h2>
<h3>Fixes</h3>
<ul>
<li><em>(help)</em> Style required argument groups</li>
<li><em>(derive)</em> Improve error messages when unsupported fields are
used</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/clap-rs/clap/commit/d81158599f5b3a2434845a1731377eae84780b9a"><code>d811585</code></a>
chore: Release</li>
<li><a
href="https://github.com/clap-rs/clap/commit/ab948b35561b5bc64b50d6a52d799aa5ac5de187"><code>ab948b3</code></a>
docs: Update changelog</li>
<li><a
href="https://github.com/clap-rs/clap/commit/82e599e91d64ddae7231c98a91b4cd39e8c9036d"><code>82e599e</code></a>
Merge pull request <a
href="https://redirect.github.com/clap-rs/clap/issues/5602">#5602</a>
from shannmu/delimiter_values</li>
<li><a
href="https://github.com/clap-rs/clap/commit/59bf26dd56032a7a4e6d923cd37de6e72c33078e"><code>59bf26d</code></a>
feat(clap_complete): Support delimiter values in native completions</li>
<li><a
href="https://github.com/clap-rs/clap/commit/ccecab394b45bc4dd251d00b7d69737ed93d18f8"><code>ccecab3</code></a>
test(clap_complete): Add test cases for delimiter_values support</li>
<li><a
href="https://github.com/clap-rs/clap/commit/a3a476407b01f083dc06200783ad745bc45e5da8"><code>a3a4764</code></a>
docs(derive): Specify Parser::update_from semantics</li>
<li><a
href="https://github.com/clap-rs/clap/commit/df165a2da431138bcc5cd891aec922cbdeda6ded"><code>df165a2</code></a>
docs(derive): Flatten isn't just for update</li>
<li><a
href="https://github.com/clap-rs/clap/commit/5488bcfa30255c59f931f1248e854c0087b2b969"><code>5488bcf</code></a>
docs(derive): Connect more dots for Args/Subcommand</li>
<li><a
href="https://github.com/clap-rs/clap/commit/6013ad4f676dd25c5b5150557a5fb5698c3de020"><code>6013ad4</code></a>
chore: Release</li>
<li><a
href="https://github.com/clap-rs/clap/commit/f98e3ee215015055d776f91217019c33da78c975"><code>f98e3ee</code></a>
docs: Update changelog</li>
<li>Additional commits viewable in <a
href="https://github.com/clap-rs/clap/compare/clap_complete-v4.5.16...clap_complete-v4.5.18">compare
view</a></li>
</ul>
</details>
<br />

Updates `const_format` from 0.2.32 to 0.2.33
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/rodrimati1992/const_format_crates/blob/master/Changelog.md">const_format's
changelog</a>.</em></p>
<blockquote>
<h3>0.2.33</h3>
<p>Fixed Rust Analyzer style warning for assertion macros.</p>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li>See full diff in <a
href="https://github.com/rodrimati1992/const_format_crates/commits">compare
view</a></li>
</ul>
</details>
<br />

Updates `serde` from 1.0.208 to 1.0.210
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/serde-rs/serde/releases">serde's
releases</a>.</em></p>
<blockquote>
<h2>v1.0.210</h2>
<ul>
<li>Support serializing and deserializing <code>IpAddr</code> and
<code>SocketAddr</code> in no-std mode on Rust 1.77+ (<a
href="https://redirect.github.com/serde-rs/serde/issues/2816">#2816</a>,
thanks <a
href="https://github.com/MathiasKoch"><code>@​MathiasKoch</code></a>)</li>
<li>Make <code>serde::ser::StdError</code> and
<code>serde::de::StdError</code> equivalent to
<code>core::error::Error</code> on Rust 1.81+ (<a
href="https://redirect.github.com/serde-rs/serde/issues/2818">#2818</a>)</li>
</ul>
<h2>v1.0.209</h2>
<ul>
<li>Fix deserialization of empty structs and empty tuples inside of
untagged enums (<a
href="https://redirect.github.com/serde-rs/serde/issues/2805">#2805</a>,
thanks <a
href="https://github.com/Mingun"><code>@​Mingun</code></a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/serde-rs/serde/commit/89c4b02bf32ceae5b17d89f93a452ccc195ca038"><code>89c4b02</code></a>
Release 1.0.210</li>
<li><a
href="https://github.com/serde-rs/serde/commit/eeb8e44cda15f929796cd72241b0311e0bd04e67"><code>eeb8e44</code></a>
Merge pull request <a
href="https://redirect.github.com/serde-rs/serde/issues/2818">#2818</a>
from dtolnay/coreerror</li>
<li><a
href="https://github.com/serde-rs/serde/commit/785c2d9605ee73cc172dfd421228c1dccca984c9"><code>785c2d9</code></a>
Stabilize no-std StdError trait</li>
<li><a
href="https://github.com/serde-rs/serde/commit/d549f048e10bcb5e677afaf7b99d0ed3604b113b"><code>d549f04</code></a>
Reformat parse_ip_impl definition and calls</li>
<li><a
href="https://github.com/serde-rs/serde/commit/4c0dd63011434905265e2710bb9186e09e4f8ec2"><code>4c0dd63</code></a>
Delete attr support from core::net deserialization macros</li>
<li><a
href="https://github.com/serde-rs/serde/commit/26fb1341651c4e0ae4d58c675db3ca2a0d6e12c2"><code>26fb134</code></a>
Relocate cfg attrs out of parse_ip_impl and parse_socket_impl</li>
<li><a
href="https://github.com/serde-rs/serde/commit/07e614b52b5ab3387d86d3198e5f52cd1f5ff3cb"><code>07e614b</code></a>
Merge pull request <a
href="https://redirect.github.com/serde-rs/serde/issues/2817">#2817</a>
from dtolnay/corenet</li>
<li><a
href="https://github.com/serde-rs/serde/commit/b1f899fbe81f070803d9f7ca6e5d1cc3f19c9ea2"><code>b1f899f</code></a>
Delete doc(cfg) attribute from impls that are supported in no-std</li>
<li><a
href="https://github.com/serde-rs/serde/commit/b4f860e62767828beb3ef91721b6c56a31f9baad"><code>b4f860e</code></a>
Merge pull request <a
href="https://redirect.github.com/serde-rs/serde/issues/2816">#2816</a>
from MathiasKoch/chore/core-net</li>
<li><a
href="https://github.com/serde-rs/serde/commit/d940fe1b4934f097b0333dcb87bec5ee308d39cd"><code>d940fe1</code></a>
Reuse existing Buf wrapper as replacement for std::io::Write</li>
<li>Additional commits viewable in <a
href="https://github.com/serde-rs/serde/compare/v1.0.208...v1.0.210">compare
view</a></li>
</ul>
</details>
<br />

Updates `serde_json` from 1.0.125 to 1.0.128
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/serde-rs/json/releases">serde_json's
releases</a>.</em></p>
<blockquote>
<h2>1.0.128</h2>
<ul>
<li>Support serializing maps containing 128-bit integer keys to
serde_json::Value (<a
href="https://redirect.github.com/serde-rs/json/issues/1188">#1188</a>,
thanks <a
href="https://github.com/Mrreadiness"><code>@​Mrreadiness</code></a>)</li>
</ul>
<h2>1.0.127</h2>
<ul>
<li>Add more removal methods to OccupiedEntry (<a
href="https://redirect.github.com/serde-rs/json/issues/1179">#1179</a>,
thanks <a
href="https://github.com/GREsau"><code>@​GREsau</code></a>)</li>
</ul>
<h2>1.0.126</h2>
<ul>
<li>Improve string parsing on targets that use 32-bit pointers but also
have fast 64-bit integer arithmetic, such as
aarch64-unknown-linux-gnu_ilp32 and x86_64-unknown-linux-gnux32 (<a
href="https://redirect.github.com/serde-rs/json/issues/1182">#1182</a>,
thanks <a href="https://github.com/CryZe"><code>@​CryZe</code></a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/serde-rs/json/commit/d96b1d9b643b49a0bb92a8cf280daf6aa08f37cc"><code>d96b1d9</code></a>
Release 1.0.128</li>
<li><a
href="https://github.com/serde-rs/json/commit/599228d5dc52a0f1595fe4bd901821f70d0317a5"><code>599228d</code></a>
Merge pull request <a
href="https://redirect.github.com/serde-rs/json/issues/1188">#1188</a>
from Mrreadiness/feat/add-hashmap-key-128-serializer</li>
<li><a
href="https://github.com/serde-rs/json/commit/5416cee6c5ad355907f6e9d5f6039b994c69f768"><code>5416cee</code></a>
feat: add support for 128 bit HashMap key serialization</li>
<li><a
href="https://github.com/serde-rs/json/commit/27a4ca9d7a62394fe8f0103f3d91de59f055a4c4"><code>27a4ca9</code></a>
Upload CI Cargo.lock for reproducing failures</li>
<li><a
href="https://github.com/serde-rs/json/commit/5ebf65cc480f90714c94f82099ca9161d80cbb10"><code>5ebf65c</code></a>
Release 1.0.127</li>
<li><a
href="https://github.com/serde-rs/json/commit/f287a3b1a93ecb1a11cee31cb638bd9523a58add"><code>f287a3b</code></a>
Merge pull request 1179 from GREsau/patch-1</li>
<li><a
href="https://github.com/serde-rs/json/commit/ec980b02774abbff12fd3e26b0a1582eb14dcef7"><code>ec980b0</code></a>
Release 1.0.126</li>
<li><a
href="https://github.com/serde-rs/json/commit/e6282b0c479947805a33c7f167b1d19dd4c7ad4f"><code>e6282b0</code></a>
Merge pull request <a
href="https://redirect.github.com/serde-rs/json/issues/1184">#1184</a>
from serde-rs/fastarithmetic</li>
<li><a
href="https://github.com/serde-rs/json/commit/ffc4a43453029cdc5603cfe3ef08414488fd45de"><code>ffc4a43</code></a>
Improve cfg names for fast arithmetic</li>
<li><a
href="https://github.com/serde-rs/json/commit/4b1048d0ecc4d326d6657531689513f182a4f850"><code>4b1048d</code></a>
Merge pull request <a
href="https://redirect.github.com/serde-rs/json/issues/1183">#1183</a>
from serde-rs/arithmetic</li>
<li>Additional commits viewable in <a
href="https://github.com/serde-rs/json/compare/1.0.125...1.0.128">compare
view</a></li>
</ul>
</details>
<br />

Updates `libc` from 0.2.158 to 0.2.159
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/rust-lang/libc/releases">libc's
releases</a>.</em></p>
<blockquote>
<h2>0.2.159</h2>
<h3>Added</h3>
<ul>
<li>Android: add more <code>AT_*</code> constants in <a
href="https://redirect.github.com/rust-lang/libc/pull/3779">rust-lang/libc#3779</a></li>
<li>Apple: add missing <code>NOTE_*</code> constants in <a
href="https://redirect.github.com/rust-lang/libc/pull/3883">rust-lang/libc#3883</a></li>
<li>Hermit: add missing error numbers in <a
href="https://redirect.github.com/rust-lang/libc/pull/3858">rust-lang/libc#3858</a></li>
<li>Hurd: add <code>__timeval</code> for 64-bit support in <a
href="https://redirect.github.com/rust-lang/libc/pull/3786">rust-lang/libc#3786</a></li>
<li>Linux: add <code>epoll_pwait2</code> in <a
href="https://redirect.github.com/rust-lang/libc/pull/3868">rust-lang/libc#3868</a></li>
<li>Linux: add <code>mq_notify</code> in <a
href="https://redirect.github.com/rust-lang/libc/pull/3849">rust-lang/libc#3849</a></li>
<li>Linux: add missing <code>NFT_CT_*</code> constants in <a
href="https://redirect.github.com/rust-lang/libc/pull/3844">rust-lang/libc#3844</a></li>
<li>Linux: add the <code>fchmodat2</code> syscall in <a
href="https://redirect.github.com/rust-lang/libc/pull/3588">rust-lang/libc#3588</a></li>
<li>Linux: add the <code>mseal</code> syscall in <a
href="https://redirect.github.com/rust-lang/libc/pull/3798">rust-lang/libc#3798</a></li>
<li>OpenBSD: add <code>sendmmsg</code> and <code>recvmmsg</code> in <a
href="https://redirect.github.com/rust-lang/libc/pull/3831">rust-lang/libc#3831</a></li>
<li>Unix: add <code>IN6ADDR_ANY_INIT</code> and
<code>IN6ADDR_LOOPBACK_INIT</code> in <a
href="https://redirect.github.com/rust-lang/libc/pull/3693">rust-lang/libc#3693</a></li>
<li>VxWorks: add <code>S_ISVTX</code> in <a
href="https://redirect.github.com/rust-lang/libc/pull/3768">rust-lang/libc#3768</a></li>
<li>VxWorks: add <code>vxCpuLib</code> and <code>taskLib</code>
functions <a
href="https://redirect.github.com/rust-lang/libc/pull/3861">rust-lang/libc#3861</a></li>
<li>WASIp2: add definitions for <code>std::net</code> support in <a
href="https://redirect.github.com/rust-lang/libc/pull/3892">rust-lang/libc#3892</a></li>
</ul>
<h3>Fixed</h3>
<ul>
<li>Correctly handle version checks when <code>clippy-driver</code> is
used <a
href="https://redirect.github.com/rust-lang/libc/pull/3893">rust-lang/libc#3893</a></li>
</ul>
<h3>Changed</h3>
<ul>
<li>EspIdf: change signal constants to c_int in <a
href="https://redirect.github.com/rust-lang/libc/pull/3895">rust-lang/libc#3895</a></li>
<li>HorizonOS: update network definitions in <a
href="https://redirect.github.com/rust-lang/libc/pull/3863">rust-lang/libc#3863</a></li>
<li>Linux: combine <code>ioctl</code> APIs in <a
href="https://redirect.github.com/rust-lang/libc/pull/3722">rust-lang/libc#3722</a></li>
<li>WASI: enable CI testing in <a
href="https://redirect.github.com/rust-lang/libc/pull/3869">rust-lang/libc#3869</a></li>
<li>WASIp2: enable CI testing in <a
href="https://redirect.github.com/rust-lang/libc/pull/3870">rust-lang/libc#3870</a></li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/rust-lang/libc/blob/0.2.159/CHANGELOG.md">libc's
changelog</a>.</em></p>
<blockquote>
<h2><a
href="https://github.com/rust-lang/libc/compare/0.2.158...0.2.159">0.2.159</a>
- 2024-09-24</h2>
<h3>Added</h3>
<ul>
<li>Android: add more <code>AT_*</code> constants in <a
href="https://redirect.github.com/rust-lang/libc/pull/3779">rust-lang/libc#3779</a></li>
<li>Apple: add missing <code>NOTE_*</code> constants in <a
href="https://redirect.github.com/rust-lang/libc/pull/3883">rust-lang/libc#3883</a></li>
<li>Hermit: add missing error numbers in <a
href="https://redirect.github.com/rust-lang/libc/pull/3858">rust-lang/libc#3858</a></li>
<li>Hurd: add <code>__timeval</code> for 64-bit support in <a
href="https://redirect.github.com/rust-lang/libc/pull/3786">rust-lang/libc#3786</a></li>
<li>Linux: add <code>epoll_pwait2</code> in <a
href="https://redirect.github.com/rust-lang/libc/pull/3868">rust-lang/libc#3868</a></li>
<li>Linux: add <code>mq_notify</code> in <a
href="https://redirect.github.com/rust-lang/libc/pull/3849">rust-lang/libc#3849</a></li>
<li>Linux: add missing <code>NFT_CT_*</code> constants in <a
href="https://redirect.github.com/rust-lang/libc/pull/3844">rust-lang/libc#3844</a></li>
<li>Linux: add the <code>fchmodat2</code> syscall in <a
href="https://redirect.github.com/rust-lang/libc/pull/3588">rust-lang/libc#3588</a></li>
<li>Linux: add the <code>mseal</code> syscall in <a
href="https://redirect.github.com/rust-lang/libc/pull/3798">rust-lang/libc#3798</a></li>
<li>OpenBSD: add <code>sendmmsg</code> and <code>recvmmsg</code> in <a
href="https://redirect.github.com/rust-lang/libc/pull/3831">rust-lang/libc#3831</a></li>
<li>Unix: add <code>IN6ADDR_ANY_INIT</code> and
<code>IN6ADDR_LOOPBACK_INIT</code> in <a
href="https://redirect.github.com/rust-lang/libc/pull/3693">rust-lang/libc#3693</a></li>
<li>VxWorks: add <code>S_ISVTX</code> in <a
href="https://redirect.github.com/rust-lang/libc/pull/3768">rust-lang/libc#3768</a></li>
<li>VxWorks: add <code>vxCpuLib</code> and <code>taskLib</code>
functions <a
href="https://redirect.github.com/rust-lang/libc/pull/3861">rust-lang/libc#3861</a></li>
<li>WASIp2: add definitions for <code>std::net</code> support in <a
href="https://redirect.github.com/rust-lang/libc/pull/3892">rust-lang/libc#3892</a></li>
</ul>
<h3>Fixed</h3>
<ul>
<li>Correctly handle version checks when <code>clippy-driver</code> is
used <a
href="https://redirect.github.com/rust-lang/libc/pull/3893">rust-lang/libc#3893</a></li>
</ul>
<h3>Changed</h3>
<ul>
<li>EspIdf: change signal constants to c_int in <a
href="https://redirect.github.com/rust-lang/libc/pull/3895">rust-lang/libc#3895</a></li>
<li>HorizonOS: update network definitions in <a
href="https://redirect.github.com/rust-lang/libc/pull/3863">rust-lang/libc#3863</a></li>
<li>Linux: combine <code>ioctl</code> APIs in <a
href="https://redirect.github.com/rust-lang/libc/pull/3722">rust-lang/libc#3722</a></li>
<li>WASI: enable CI testing in <a
href="https://redirect.github.com/rust-lang/libc/pull/3869">rust-lang/libc#3869</a></li>
<li>WASIp2: enable CI testing in <a
href="https://redirect.github.com/rust-lang/libc/pull/3870">rust-lang/libc#3870</a></li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/rust-lang/libc/commit/7373a1abe57da20efae9fd2ca891d7b905c19e03"><code>7373a1a</code></a>
chore: release (<a
href="https://redirect.github.com/rust-lang/libc/issues/3862">#3862</a>)</li>
<li><a
href="https://github.com/rust-lang/libc/commit/48668be46be0dbc2d3dfcf942778c37a07d38a87"><code>48668be</code></a>
Merge pull request <a
href="https://redirect.github.com/rust-lang/libc/issues/3931">#3931</a>
from tgross35/backport-remove-tmp-file</li>
<li><a
href="https://github.com/rust-lang/libc/commit/28bb64b1fe678ca090f9af08d786949d53285940"><code>28bb64b</code></a>
Remove temporary file that was added by accident</li>
<li><a
href="https://github.com/rust-lang/libc/commit/a515d07dd95093bc1c3a7b716f0936d2d0b989db"><code>a515d07</code></a>
Merge pull request <a
href="https://redirect.github.com/rust-lang/libc/issues/3904">#3904</a>
from tgross35/backport-buildrs-fix</li>
<li><a
href="https://github.com/rust-lang/libc/commit/abcb8f87986c8f57a28c4f67d7939272f4f8cbad"><code>abcb8f8</code></a>
Simplify the RUSTC_WRAPPER check</li>
<li><a
href="https://github.com/rust-lang/libc/commit/507833559bd0bfe04b5139c1607c3dc3208174f5"><code>5078335</code></a>
Fix rustc version when <code>clippy-driver</code> is used</li>
<li><a
href="https://github.com/rust-lang/libc/commit/57a7d465fa69c85bb96c98c84762ada90ad02077"><code>57a7d46</code></a>
Merge pull request <a
href="https://redirect.github.com/rust-lang/libc/issues/3902">#3902</a>
from tgross35/backport-horizon-network</li>
<li><a
href="https://github.com/rust-lang/libc/commit/a3e88691a9a1a41867b0692b67cc50f5b1d39eb2"><code>a3e8869</code></a>
Revise network definitions for HorizonOS</li>
<li><a
href="https://github.com/rust-lang/libc/commit/fdd3a268960639b4714c2829976b87b374fa0f9f"><code>fdd3a26</code></a>
Merge pull request <a
href="https://redirect.github.com/rust-lang/libc/issues/3900">#3900</a>
from tgross35/espid-cherry-pick</li>
<li><a
href="https://github.com/rust-lang/libc/commit/35060e8eb0bd7a64722fc7ff8ef475f6b15384a9"><code>35060e8</code></a>
Merge pull request <a
href="https://redirect.github.com/rust-lang/libc/issues/3901">#3901</a>
from tgross35/backport-epoll_pwait2</li>
<li>Additional commits viewable in <a
href="https://github.com/rust-lang/libc/compare/0.2.158...0.2.159">compare
view</a></li>
</ul>
</details>
<br />

Updates `is_executable` from 1.0.1 to 1.0.3
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/fitzgen/is_executable/commit/cfe991224073cdab13ff6a8133d1cacd8182e21a"><code>cfe9912</code></a>
Bump to version 1.0.3</li>
<li><a
href="https://github.com/fitzgen/is_executable/commit/d6fcf2f526963b4e12ab063fca255bbe75bca178"><code>d6fcf2f</code></a>
Remove old test about README.md being in sync with module docs</li>
<li><a
href="https://github.com/fitzgen/is_executable/commit/95f27a6d3dae185ee1332728e959e4ff7c6890d9"><code>95f27a6</code></a>
Remove old CI</li>
<li><a
href="https://github.com/fitzgen/is_executable/commit/e70c103b81b5e5e7f25d7973605181cc622f2578"><code>e70c103</code></a>
Update badges in README</li>
<li><a
href="https://github.com/fitzgen/is_executable/commit/61d2e9ba8cf05a1410ca69fd157ca234c65a8af7"><code>61d2e9b</code></a>
Add github actions</li>
<li><a
href="https://github.com/fitzgen/is_executable/commit/001b334761623dcc0182dded9f1e3b949f7cf79a"><code>001b334</code></a>
Bump to version 1.0.2</li>
<li><a
href="https://github.com/fitzgen/is_executable/commit/fab168c19690b6247f9e983fd0e0d0d8599c3bef"><code>fab168c</code></a>
Merge pull request <a
href="https://redirect.github.com/fitzgen/is_executable/issues/14">#14</a>
from lucieleblanc/master</li>
<li><a
href="https://github.com/fitzgen/is_executable/commit/82f9c68782656eb9ec2fcad978fce3c9e60a3072"><code>82f9c68</code></a>
replace is_file() --&gt; exists() because symlinks are ok</li>
<li><a
href="https://github.com/fitzgen/is_executable/commit/441c1c7df30116f3a4a1b8a999e457816d77cf7a"><code>441c1c7</code></a>
add file existence check before reading extension</li>
<li><a
href="https://github.com/fitzgen/is_executable/commit/ea10f6b2f8456bdcc5300027c5605ff6089b371c"><code>ea10f6b</code></a>
Merge pull request <a
href="https://redirect.github.com/fitzgen/is_executable/issues/11">#11</a>
from davide125/exclude</li>
<li>Additional commits viewable in <a
href="https://github.com/fitzgen/is_executable/compare/v1.0.1...v1.0.3">compare
view</a></li>
</ul>
</details>
<br />

Updates `derive-new` from 0.6.0 to 0.7.0
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/nrc/derive-new/commit/6626d8f566ee523ead38fe789b171f1b46993e49"><code>6626d8f</code></a>
Update compiletest</li>
<li><a
href="https://github.com/nrc/derive-new/commit/1e024ddf396e06690c0b39baa5a4f996ae88404b"><code>1e024dd</code></a>
cargo update, etc.</li>
<li><a
href="https://github.com/nrc/derive-new/commit/3389ef278665f8e0be249b6f4bd3cbfc727160a8"><code>3389ef2</code></a>
Fix doc tests</li>
<li><a
href="https://github.com/nrc/derive-new/commit/bd4486d85de87d5a543a7604f4e8f136c8b0e973"><code>bd4486d</code></a>
implement <code>into</code> and <code>into_iter</code></li>
<li><a
href="https://github.com/nrc/derive-new/commit/a9230ace30ffc43836e0e49e42e1203c7f079732"><code>a9230ac</code></a>
fix tests</li>
<li><a
href="https://github.com/nrc/derive-new/commit/77cb8287d22ca3aff803577a49321886895a43ee"><code>77cb828</code></a>
Merge pull request <a
href="https://redirect.github.com/nrc/derive-new/issues/67">#67</a> from
Paragit-Solutions/implement-new-method-visibility</li>
<li><a
href="https://github.com/nrc/derive-new/commit/cacbadabd235a83e978fcd52d9ed83dffff43abd"><code>cacbada</code></a>
Merge pull request <a
href="https://redirect.github.com/nrc/derive-new/issues/66">#66</a> from
shellixyz/patch-1</li>
<li><a
href="https://github.com/nrc/derive-new/commit/d11f63160c0829dbf06a1aab30f431c9b58ecc37"><code>d11f631</code></a>
Add documentation</li>
<li><a
href="https://github.com/nrc/derive-new/commit/3311408f8fc4844e857708bf2a222c939ac1066d"><code>3311408</code></a>
Add visibility to test struct to test compilation and correct macro
expansion</li>
<li><a
href="https://github.com/nrc/derive-new/commit/61853b79702bae6d0ffa343718310f20463687a4"><code>61853b7</code></a>
Make the default visibility public</li>
<li>Additional commits viewable in <a
href="https://github.com/nrc/derive-new/compare/0.6.0...0.7">compare
view</a></li>
</ul>
</details>
<br />

Updates `async-trait` from 0.1.81 to 0.1.83
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/dtolnay/async-trait/releases">async-trait's
releases</a>.</em></p>
<blockquote>
<h2>0.1.83</h2>
<ul>
<li>Prevent needless_arbitrary_self_type lint being produced in
generated code (<a
href="https://redirect.github.com/dtolnay/async-trait/issues/278">#278</a>)</li>
</ul>
<h2>0.1.82</h2>
<ul>
<li>Prevent elided_named_lifetimes lint being produced in generated code
(<a
href="https://redirect.github.com/dtolnay/async-trait/issues/276">#276</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/dtolnay/async-trait/commit/e6b4d471c64156338fb87386b7a7ad8543c3a205"><code>e6b4d47</code></a>
Release 0.1.83</li>
<li><a
href="https://github.com/dtolnay/async-trait/commit/bfe8d617660237b27eee620181586a16ff2f6a25"><code>bfe8d61</code></a>
Merge pull request <a
href="https://redirect.github.com/dtolnay/async-trait/issues/278">#278</a>
from dtolnay/arbself</li>
<li><a
href="https://github.com/dtolnay/async-trait/commit/7bd974b3a4db2c3ab321de2976d09d3ea2b82348"><code>7bd974b</code></a>
Ignore needless_arbitrary_self_type clippy lint in generated code</li>
<li><a
href="https://github.com/dtolnay/async-trait/commit/b53b4e755402ef91d2104d40b8f303ad0c56d2f9"><code>b53b4e7</code></a>
Add regression test for issue 277</li>
<li><a
href="https://github.com/dtolnay/async-trait/commit/f8e5bb43181450a17068f160e8a51d410ede1705"><code>f8e5bb4</code></a>
Release 0.1.82</li>
<li><a
href="https://github.com/dtolnay/async-trait/commit/8fbf118de30d3d30416d5a2dff496513433171c4"><code>8fbf118</code></a>
Merge pull request <a
href="https://redirect.github.com/dtolnay/async-trait/issues/276">#276</a>
from dtolnay/elidednamed</li>
<li><a
href="https://github.com/dtolnay/async-trait/commit/6fa246a0546fc678c4812ccb59306b6b264c27a0"><code>6fa246a</code></a>
Ignore nightly's new elided_named_lifetimes lint in generated code</li>
<li><a
href="https://github.com/dtolnay/async-trait/commit/d542a0dd74f366995e5924edc2d6ac7661e5d9ca"><code>d542a0d</code></a>
Upload CI Cargo.lock for reproducing failures</li>
<li><a
href="https://github.com/dtolnay/async-trait/commit/8828c35a86442dd05b6ac3aab5f0bac769e246f0"><code>8828c35</code></a>
Sort dependency features in Cargo.toml</li>
<li><a
href="https://github.com/dtolnay/async-trait/commit/ba9793af3f3936e2373ab4c482bf49ac67009df8"><code>ba9793a</code></a>
Update ui test suite to nightly-2024-08-11</li>
<li>Additional commits viewable in <a
href="https://github.com/dtolnay/async-trait/compare/0.1.81...0.1.83">compare
view</a></li>
</ul>
</details>
<br />

Updates `autocfg` from 1.3.0 to 1.4.0
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/cuviper/autocfg/commit/d07df6624a4573803a29397c0ccf636aa0b3d153"><code>d07df66</code></a>
Merge pull request <a
href="https://redirect.github.com/cuviper/autocfg/issues/73">#73</a>
from cuviper/release-1.4.0</li>
<li><a
href="https://github.com/cuviper/autocfg/commit/f6066f016441c2a25e0fa0d9d0521b1a79b0e14c"><code>f6066f0</code></a>
Release 1.4.0</li>
<li><a
href="https://github.com/cuviper/autocfg/commit/8af60eca650aed24db3042dbd0a2e1f61016b95e"><code>8af60ec</code></a>
Merge pull request <a
href="https://redirect.github.com/cuviper/autocfg/issues/70">#70</a>
from Techcable/feature/rustc-check-cfg</li>
<li><a
href="https://github.com/cuviper/autocfg/commit/52a995b6723ae015fbed7312d56803492f01e10a"><code>52a995b</code></a>
Apply suggestions from code review</li>
<li><a
href="https://github.com/cuviper/autocfg/commit/a8703c163f5aa66819f515356530420955374386"><code>a8703c1</code></a>
Attempt rust 1.0 compat for ci/verify-check-cfg</li>
<li><a
href="https://github.com/cuviper/autocfg/commit/ac78be804dbcf9e616d69a93c0ba918adc6a003a"><code>ac78be8</code></a>
Add ci test crate for check-cfg</li>
<li><a
href="https://github.com/cuviper/autocfg/commit/0b4a7617ad0e6ccf271dac7ab920a731195fab32"><code>0b4a761</code></a>
Have emit_has methods delegate wherever possible</li>
<li><a
href="https://github.com/cuviper/autocfg/commit/546f7c6c1c0e25b2dca136675934348118f603d2"><code>546f7c6</code></a>
Fix minor doc issues</li>
<li><a
href="https://github.com/cuviper/autocfg/commit/e0e0f18f54fb60f9c42a01c6571edcdab4542db6"><code>e0e0f18</code></a>
Automatically emit <code>rustc-check-cfg</code> directives for
AutoCfg</li>
<li><a
href="https://github.com/cuviper/autocfg/commit/1953a17319e667dd2ead9a4eae0645ed939eef24"><code>1953a17</code></a>
Merge pull request <a
href="https://redirect.github.com/cuviper/autocfg/issues/72">#72</a>
from cuviper/pretty-way</li>
<li>Additional commits viewable in <a
href="https://github.com/cuviper/autocfg/compare/1.3.0...1.4.0">compare
view</a></li>
</ul>
</details>
<br />

Updates `backtrace` from 0.3.73 to 0.3.74
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/rust-lang/backtrace-rs/releases">backtrace's
releases</a>.</em></p>
<blockquote>
<h2>0.3.74</h2>
<h2>What's Changed</h2>
<ul>
<li>QNX Neutrino 7.0 support, thanks to <a
href="https://github.com/nyurik"><code>@​nyurik</code></a> in <a
href="https://redirect.github.com/rust-lang/backtrace-rs/pull/648">rust-lang/backtrace-rs#648</a></li>
<li>Cleaned up our Android support. This should massively improve
backtraces for ones with the API level sufficient to ship with
libunwind, etc. Unfortunately, it comes at the cost of dropping support
for older ones! Thanks to <a
href="https://github.com/fengys"><code>@​fengys</code></a> in <a
href="https://redirect.github.com/rust-lang/backtrace-rs/pull/656">rust-lang/backtrace-rs#656</a></li>
<li>Made PrintFmt, which was using the
<code>Enum::__NonExhaustiveVariant</code> pattern, use
<code>#[non_exhaustive]</code> for real. Don't @ me if you were matching
on that! Thanks to <a
href="https://github.com/nyurik"><code>@​nyurik</code></a> in <a
href="https://redirect.github.com/rust-lang/backtrace-rs/pull/651">rust-lang/backtrace-rs#651</a></li>
<li>Massively cleaned up the windows code! We moved from winapi to
windows-sys with windows-targets thanks to <a
href="https://github.com/CraftSpider"><code>@​CraftSpider</code></a> and
<a href="https://github.com/ChrisDenton"><code>@​ChrisDenton</code></a>
in
<ul>
<li>Don't cast HANDLE to usize and back by <a
href="https://github.com/CraftSpider"><code>@​CraftSpider</code></a> in
<a
href="https://redirect.github.com/rust-lang/backtrace-rs/pull/635">rust-lang/backtrace-rs#635</a></li>
<li>Switch from <code>winapi</code> to <code>windows-sys</code> by <a
href="https://github.com/CraftSpider"><code>@​CraftSpider</code></a> in
<a
href="https://redirect.github.com/rust-lang/backtrace-rs/pull/641">rust-lang/backtrace-rs#641</a></li>
<li>Update windows bindings and use windows-targets by <a
href="https://github.com/ChrisDenton"><code>@​ChrisDenton</code></a> in
<a
href="https://redirect.github.com/rust-lang/backtrace-rs/pull/653">rust-lang/backtrace-rs#653</a></li>
</ul>
</li>
<li>A bunch of updated dependencies. Thanks <a
href="https://github.com/djc"><code>@​djc</code></a> and <a
href="https://github.com/khuey"><code>@​khuey</code></a>!</li>
<li>Sorry if you were testing this code in miri! It started yelling
about sussy casts. A lot. We did a bunch of internal cleanups that
should make it quiet down, thanks to <a
href="https://github.com/workingjubilee"><code>@​workingjubilee</code></a>
in <a
href="https://redirect.github.com/rust-lang/backtrace-rs/pull/641">rust-lang/backtrace-rs#641</a></li>
<li>Uhhh we had to tweak <code>dl_iterate_phdr</code> in <a
href="https://redirect.github.com/rust-lang/backtrace-rs/pull/660">rust-lang/backtrace-rs#660</a>
after Android revealed it was... kind of unsound actually and not doing
things like checking for null pointers before making slices! WHOOPS!
Thanks to <a
href="https://github.com/saethlin"><code>@​saethlin</code></a> for
implementing detection for precisely that in rustc! It's really hard to
find soundness issues in inherited codebases like this one...</li>
</ul>
<h2>New Contributors</h2>
<ul>
<li><a
href="https://github.com/CraftSpider"><code>@​CraftSpider</code></a>
made their first contribution in <a
href="https://redirect.github.com/rust-lang/backtrace-rs/pull/635">rust-lang/backtrace-rs#635</a></li>
<li><a
href="https://github.com/fengys1996"><code>@​fengys1996</code></a> made
their first contribution in <a
href="https://redirect.github.com/rust-lang/backtrace-rs/pull/656">rust-lang/backtrace-rs#656</a></li>
<li><a href="https://github.com/djc"><code>@​djc</code></a> made their
first contribution in <a
href="https://redirect.github.com/rust-lang/backtrace-rs/pull/657">rust-lang/backtrace-rs#657</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/rust-lang/backtrace-rs/compare/0.3.73...0.3.74">https://github.com/rust-lang/backtrace-rs/compare/0.3.73...0.3.74</a></p>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/rust-lang/backtrace-rs/commit/38d49aa0395c50047ab26e418a0cb30d9955fb64"><code>38d49aa</code></a>
Merge pull request <a
href="https://redirect.github.com/rust-lang/backtrace-rs/issues/658">#658</a>
from workingjubilee/cut-0.3.74</li>
<li><a
href="https://github.com/rust-lang/backtrace-rs/commit/c1749ce9a8cc0105b9d224e66f9ce4632133c1ea"><code>c1749ce</code></a>
Cut backtrace 0.3.74</li>
<li><a
href="https://github.com/rust-lang/backtrace-rs/commit/230570f2dac80a601f5c0b30da00cc9480bd35eb"><code>230570f</code></a>
Merge pull request <a
href="https://redirect.github.com/rust-lang/backtrace-rs/issues/660">#660</a>
from workingjubilee/dont-unsoundly-iterate-phdr</li>
<li><a
href="https://github.com/rust-lang/backtrace-rs/commit/153f510013e9d486103dac7994d7f75205af397a"><code>153f510</code></a>
Do not destructure maybe-uninit fields</li>
<li><a
href="https://github.com/rust-lang/backtrace-rs/commit/38589464ed3a901794f5858ccbd7f996f6712f64"><code>3858946</code></a>
Revise dl_iterate_phdr callback to be sound-ish</li>
<li><a
href="https://github.com/rust-lang/backtrace-rs/commit/7d062c63749a4c07d9307c96b6cd9485ccd1ad18"><code>7d062c6</code></a><code>rust-lang/backtrace-rs#653</code></li>
<li><a
href="https://github.com/rust-lang/backtrace-rs/commit/fc37b22dc8a384d93f6b7b4817266eec6433875e"><code>fc37b22</code></a><code>rust-lang/backtrace-rs#657</code></li>
<li><a
href="https://github.com/rust-lang/backtrace-rs/commit/600beaa5074be0f40279584450d995c319061ce8"><code>600beaa</code></a><code>rust-lang/backtrace-rs#648</code></li>
<li><a
href="https://github.com/rust-lang/backtrace-rs/commit/84b6c1d56f4bd1b4297187db863c2db6d436c1cf"><code>84b6c1d</code></a><code>rust-lang/backtrace-rs#652</code></li>
<li><a
href="https://github.com/rust-lang/backtrace-rs/commit/95c3bacab9364620864208b651e77a524900480d"><code>95c3bac</code></a>
Make enum
<code>print::PrintFmt</code><code>rust-lang/backtrace-rs#651</code></li>
<li>Additional commits viewable in <a
href="https://github.com/rust-lang/backtrace-rs/compare/0.3.73...0.3.74">compare
view</a></li>
</ul>
</details>
<br />

Updates `bytes` from 1.7.1 to 1.7.2
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/tokio-rs/bytes/releases">bytes's
releases</a>.</em></p>
<blockquote>
<h2>Bytes 1.7.2</h2>
<h1>1.7.2 (September 17, 2024)</h1>
<h3>Fixed</h3>
<ul>
<li>Fix default impl of <code>Buf::{get_int, get_int_le}</code> (<a
href="https://redirect.github.com/tokio-rs/bytes/issues/732">#732</a>)</li>
</ul>
<h3>Documented</h3>
<ul>
<li>Fix double spaces in comments and doc comments (<a
href="https://redirect.github.com/tokio-rs/bytes/issues/731">#731</a>)</li>
</ul>
<h3>Internal changes</h3>
<ul>
<li>Ensure BytesMut::advance reduces capacity (<a
href="https://redirect.github.com/tokio-rs/bytes/issues/728">#728</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/tokio-rs/bytes/blob/master/CHANGELOG.md">bytes's
changelog</a>.</em></p>
<blockquote>
<h1>1.7.2 (September 17, 2024)</h1>
<h3>Fixed</h3>
<ul>
<li>Fix default impl of <code>Buf::{get_int, get_int_le}</code> (<a
href="https://redirect.github.com/tokio-rs/bytes/issues/732">#732</a>)</li>
</ul>
<h3>Documented</h3>
<ul>
<li>Fix double spaces in comments and doc comments (<a
href="https://redirect.github.com/tokio-rs/bytes/issues/731">#731</a>)</li>
</ul>
<h3>Internal changes</h3>
<ul>
<li>Ensure BytesMut::advance reduces capacity (<a
href="https://redirect.github.com/tokio-rs/bytes/issues/728">#728</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/tokio-rs/bytes/commit/d7c1d658d90c922eeee1dbc29bc6f6fd9a1a1a66"><code>d7c1d65</code></a>
chore: prepare bytes v1.7.2 (<a
href="https://redirect.github.com/tokio-rs/bytes/issues/736">#736</a>)</li>
<li><a
href="https://github.com/tokio-rs/bytes/commit/ac46ebdd464144cecd7463a96ca9eb347458ae94"><code>ac46ebd</code></a>
ci: update nightly to nightly-2024-09-15 (<a
href="https://redirect.github.com/tokio-rs/bytes/issues/734">#734</a>)</li>
<li><a
href="https://github.com/tokio-rs/bytes/commit/79fb85323cf4cf14d9b85f487b65fc147030cf4b"><code>79fb853</code></a>
fix: apply sign extension when decoding int (<a
href="https://redirect.github.com/tokio-rs/bytes/issues/732">#732</a>)</li>
<li><a
href="https://github.com/tokio-rs/bytes/commit/291df5acc94b82a48765e67eeb1c1a2074539e68"><code>291df5a</code></a>
Fix double spaces in comments and doc comments (<a
href="https://redirect.github.com/tokio-rs/bytes/issues/731">#731</a>)</li>
<li><a
href="https://github.com/tokio-rs/bytes/commit/ed7d5ff39e39c2802c0fa9e2fc308f6a3e0beda7"><code>ed7d5ff</code></a>
test: ensure BytesMut::advance reduces capacity (<a
href="https://redirect.github.com/tokio-rs/bytes/issues/728">#728</a>)</li>
<li>See full diff in <a
href="https://github.com/tokio-rs/bytes/compare/v1.7.1...v1.7.2">compare
view</a></li>
</ul>
</details>
<br />

Updates `cc` from 1.1.14 to 1.1.22
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/rust-lang/cc-rs/releases">cc's
releases</a>.</em></p>
<blockquote>
<h2>cc-v1.1.22</h2>
<h3>Other</h3>
<ul>
<li>Don't rerun if PATH changes (<a
href="https://redirect.github.com/rust-lang/cc-rs/pull/1215">#1215</a>)</li>
</ul>
<h2>cc-v1.1.21</h2>
<h3>Other</h3>
<ul>
<li>disable pic for targets that end in <code>-none</code> (<a
href="https://redirect.github.com/rust-lang/cc-rs/pull/1212">#1212</a>)</li>
</ul>
<h2>cc-v1.1.20</h2>
<h3>Other</h3>
<ul>
<li>Add buildcache as known Rust and C/C++ compiler wrapper (<a
href="https://redirect.github.com/rust-lang/cc-rs/pull/1209">#1209</a>)</li>
</ul>
<h2>cc-v1.1.19</h2>
<h3>Other</h3>
<ul>
<li>Add support arm64e-apple-darwin (<a
href="https://redirect.github.com/rust-lang/cc-rs/pull/1207">#1207</a>)</li>
</ul>
<h2>cc-v1.1.18</h2>
<h3>Other</h3>
<ul>
<li>Fixed unsoundness in <code>StderrForwarder::forward_available</code>
(<a
href="https://redirect.github.com/rust-lang/cc-rs/pull/1203">#1203</a>)</li>
</ul>
<h2>cc-v1.1.17</h2>
<h3>Fixed</h3>
<ul>
<li>fix finding toolchains when invoked by msbuild (<a
href="https://redirect.github.com/rust-lang/cc-rs/pull/1201">#1201</a>)</li>
</ul>
<h2>cc-v1.1.16</h2>
<h3>Other</h3>
<ul>
<li>Treat VxWorks wr-cc as a Gnu compiler (<a
href="https://redirect.github.com/rust-lang/cc-rs/pull/1198">#1198</a>)</li>
</ul>
<h2>cc-v1.1.15</h2>
<h3>Other</h3>
<ul>
<li>Add -mfloat-abi=hard as a default argument when using any
arm/thumb-none-eabihf target (<a
href="https://redirect.github.com/rust-lang/cc-rs/pull/1194">#1194</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/rust-lang/cc-rs/blob/main/CHANGELOG.md">cc's
changelog</a>.</em></p>
<blockquote>
<h2><a
href="https://github.com/rust-lang/cc-rs/compare/cc-v1.1.21...cc-v1.1.22">1.1.22</a>
- 2024-09-27</h2>
<h3>Other</h3>
<ul>
<li>Don't rerun if PATH changes (<a
href="https://redirect.github.com/rust-lang/cc-rs/pull/1215">#1215</a>)</li>
</ul>
<h2><a
href="https://github.com/rust-lang/cc-rs/compare/cc-v1.1.20...cc-v1.1.21">1.1.21</a>
- 2024-09-18</h2>
<h3>Other</h3>
<ul>
<li>disable pic for targets that end in <code>-none</code> (<a
href="https://redirect.github.com/rust-lang/cc-rs/pull/1212">#1212</a>)</li>
</ul>
<h2><a
href="https://github.com/rust-lang/cc-rs/compare/cc-v1.1.19...cc-v1.1.20">1.1.20</a>
- 2024-09-17</h2>
<h3>Other</h3>
<ul>
<li>Add buildcache as known Rust and C/C++ compiler wrapper (<a
href="https://redirect.github.com/rust-lang/cc-rs/pull/1209">#1209</a>)</li>
</ul>
<h2><a
href="https://github.com/rust-lang/cc-rs/compare/cc-v1.1.18...cc-v1.1.19">1.1.19</a>
- 2024-09-15</h2>
<h3>Other</h3>
<ul>
<li>Add support arm64e-apple-darwin (<a
href="https://redirect.github.com/rust-lang/cc-rs/pull/1207">#1207</a>)</li>
</ul>
<h2><a
href="https://github.com/rust-lang/cc-rs/compare/cc-v1.1.17...cc-v1.1.18">1.1.18</a>
- 2024-09-07</h2>
<h3>Other</h3>
<ul>
<li>Fixed unsoundness in <code>StderrForwarder::forward_available</code>
(<a
href="https://redirect.github.com/rust-lang/cc-rs/pull/1203">#1203</a>)</li>
</ul>
<h2><a
href="https://github.com/rust-lang/cc-rs/compare/cc-v1.1.16...cc-v1.1.17">1.1.17</a>
- 2024-09-06</h2>
<h3>Fixed</h3>
<ul>
<li>fix finding toolchains when invoked by msbuild (<a
href="https://redirect.github.com/rust-lang/cc-rs/pull/1201">#1201</a>)</li>
</ul>
<h2><a
href="https://github.com/rust-lang/cc-rs/compare/cc-v1.1.15...cc-v1.1.16">1.1.16</a>
- 2024-09-04</h2>
<h3>Other</h3>
<ul>
<li>Treat VxWorks wr-cc as a Gnu compiler (<a
href="https://redirect.github.com/rust-lang/cc-rs/pull/1198">#1198</a>)</li>
</ul>
<h2><a
href="https://github.com/rust-lang/cc-rs/compare/cc-v1.1.14...cc-v1.1.15">1.1.15</a>
- 2024-08-26</h2>
<h3>Other</h3>
<ul>
<li>Add -mfloat-abi=hard as a default argument when using any
arm/thumb-none-eabihf target (<a
href="https://redirect.github.com/rust-lang/cc-rs/pull/1194">#1194</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/rust-lang/cc-rs/commit/5f5e1c8c18b53aa1524f720ce21b5a7986a0bf6b"><code>5f5e1c8</code></a>
chore: release (<a
href="https://redirect.github.com/rust-lang/cc-rs/issues/1216">#1216</a>)</li>
<li><a
href="https://github.com/rust-lang/cc-rs/commit/71c672b4afa2f9b6e5046a963d3b5bc1f9ccd2f8"><code>71c672b</code></a>
Don't rerun if PATH changes (<a
href="https://redirect.github.com/rust-lang/cc-rs/issues/1215">#1215</a>)</li>
<li><a
href="https://github.com/rust-lang/cc-rs/commit/748b777e553af972fb0484ece2626beaa354e0a2"><code>748b777</code></a>
chore: release (<a
href="https://redirect.github.com/rust-lang/cc-rs/issues/1213">#1213</a>)</li>
<li><a
href="https://github.com/rust-lang/cc-rs/commit/270ec653371a12498c3a338fb8b4a5d35e8388c6"><code>270ec65</code></a>
disable pic for targets that end in <code>-none</code> (<a
href="https://redirect.github.com/rust-lang/cc-rs/issues/1212">#1212</a>)</li>
<li><a
href="https://github.com/rust-lang/cc-rs/commit/92a5e28c084aefc101d2f71f236614d9fcaa1f9e"><code>92a5e28</code></a>
chore: release (<a
href="https://redirect.github.com/rust-lang/cc-rs/issues/1210">#1210</a>)</li>
<li><a
href="https://github.com/rust-lang/cc-rs/commit/dab5d7adb4c090ac9d8650e7d97897a711ac7a14"><code>dab5d7a</code></a>
Add buildcache as known Rust and C/C++ compiler wrapper (<a
href="https://redirect.github.com/rust-lang/cc-rs/issues/1209">#1209</a>)</li>
<li><a
href="https://github.com/rust-lang/cc-rs/commit/c0b3eae28300fc8b36eb3a0b519ef4083f1a129e"><code>c0b3eae</code></a>
chore: release (<a
href="https://redirect.github.com/rust-lang/cc-rs/issues/1208">#1208</a>)</li>
<li><a
href="https://github.com/rust-lang/cc-rs/commit/278a606afb79b00cfe7a1372dbaa3529ecce3dc4"><code>278a606</code></a>
Add support arm64e-apple-darwin (<a
href="https://redirect.github.com/rust-lang/cc-rs/issues/1207">#1207</a>)</li>
<li><a
href="https://github.com/rust-lang/cc-rs/commit/668facdbbcade9ebfb48c8ea0b658fc2688c4e5c"><code>668facd</code></a>
chore: release (<a
href="https://redirect.github.com/rust-lang/cc-rs/issues/1204">#1204</a>)</li>
<li><a
href="https://github.com/rust-lang/cc-rs/commit/5e161c6f4452fe63985bdfc78462ceda94c99805"><code>5e161c6</code></a>
Fixed unsoundness in <code>StderrForwarder::forward_available</code> (<a
href="https://redirect.github.com/rust-lang/cc-rs/issues/1203">#1203</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/rust-lang/cc-rs/compare/cc-v1.1.14...cc-v1.1.22">compare
view</a></li>
</ul>
</details>
<br />

Updates `clap_builder` from 4.5.15 to 4.5.18
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/clap-rs/clap/releases">clap_builder's
releases</a>.</em></p>
<blockquote>
<h2>v4.5.18</h2>
<h2>[4.5.18] - 2024-09-20</h2>
<h3>Features</h3>
<ul>
<li><em>(builder)</em> Expose <code>Arg::get_display_order</code> and
<code>Command::get_display_order</code></li>
</ul>
<h2>v4.5.17</h2>
<h2>[4.5.17] - 2024-09-04</h2>
<h3>Fixes</h3>
<ul>
<li><em>(help)</em> Style required argument groups</li>
<li><em>(derive)</em> Improve error messages when unsupported fields are
used</li>
</ul>
<h2>v4.5.16</h2>
<h2>[4.5.16] - 2024-08-15</h2>
<h3>Fixes</h3>
<ul>
<li><em>(derive)</em> Improve error messages when <code>derive</code>
feature is missing</li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/clap-rs/clap/blob/master/CHANGELOG.md">clap_builder's
changelog</a>.</em></p>
<blockquote>
<h2>[4.5.18] - 2024-09-20</h2>
<h3>Features</h3>
<ul>
<li><em>(builder)</em> Expose <code>Arg::get_display_order</code> and
<code>Command::get_display_order</code></li>
</ul>
<h2>[4.5.17] - 2024-09-04</h2>
<h3>Fixes</h3>
<ul>
<li><em>(help)</em> Style required argument groups</li>
<li><em>(derive)</em> Improve error messages when unsupported fields are
used</li>
</ul>
<h2>[4.5.16] - 2024-08-15</h2>
<h3>Fixes</h3>
<ul>
<li><em>(derive)</em> Improve error messages when <code>derive</code>
feature is missing</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/clap-rs/clap/commit/0d142f6c04a702b791d2dfec8327661ba1b6d16c"><code>0d142f6</code></a>
chore: Release</li>
<li><a
href="https://github.com/clap-rs/clap/commit/0facf1f370e7966a4d97bce56d1d10ca4c80d0ae"><code>0facf1f</code></a>
docs: Update changelog</li>
<li><a
href="https://github.com/clap-rs/clap/commit/ee6af99c6c5e239c0f2c92f9d1baf8aa3bb4af90"><code>ee6af99</code></a>
Merge pull request <a
href="https://redirect.github.com/clap-rs/clap/issues/5743">#5743</a>
from epage/sort</li>
<li><a
href="https://github.com/clap-rs/clap/commit/232ee106615e997f0841bb3de97eed126b929fe3"><code>232ee10</code></a>
fix(complete): Use existing display order for Arg/Command</li>
<li><a
href="https://github.com/clap-rs/clap/commit/c6b5d627a0c17527630e4086a4fe83589365d1f0"><code>c6b5d62</code></a>
feat(builder): Expose get_display_order</li>
<li><a
href="https://github.com/clap-rs/clap/commit/67d9fef9cee8f1b297aed73e6d95f78744b43a27"><code>67d9fef</code></a>
feat(complete): Give control over display order</li>
<li><a
href="https://github.com/clap-rs/clap/commit/59a61e188fbb9999db52f567e3951d3720204084"><code>59a61e1</code></a>
refactor(complete): Pull out common candidate code</li>
<li><a
href="https://github.com/clap-rs/clap/commit/144879194081212046d5566572bfa15ea9bcca35"><code>1448791</code></a>
fix(complete): Specify tags for built-in candiates</li>
<li><a
href="https://github.com/clap-rs/clap/commit/a4aa5dffdf46a2975f2b2d51ce7e618e19250ead"><code>a4aa5df</code></a>
feat(complete): Group by tag</li>
<li><a
href="https://github.com/clap-rs/clap/commit/a126149a809f01586ccb6d9299eb2fc2c87d8fe0"><code>a126149</code></a>
refactor(complete): Remove redundant dedup</li>
<li>Additional commits viewable in <a
href="https://github.com/clap-rs/clap/compare/v4.5.15...v4.5.18">compare
view</a></li>
</ul>
</details>
<br />

Updates `clap_derive` from 4.5.13 to 4.5.18
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/clap-rs/clap/releases">clap_derive's
releases</a>.</em></p>
<blockquote>
<h2>v4.5.18</h2>
<h2>[4.5.18] - 2024-09-20</h2>
<h3>Features</h3>
<ul>
<li><em>(builder)</em> Expose <code>Arg::get_display_order</code> and
<code>Command::get_display_order</code></li>
</ul>
<h2>v4.5.17</h2>
<h2>[4.5.17] - 2024-09-04</h2>
<h3>Fixes</h3>
<ul>
<li><em>(help)</em> Style required argument groups</li>
<li><em>(derive)</em> Improve error messages when unsupported fields are
used</li>
</ul>
<h2>v4.5.16</h2>
<h2>[4.5.16] - 2024-08-15</h2>
<h3>Fixes</h3>
<ul>
<li><em>(derive)</em> Improve error messages when <code>derive</code>
feature is missing</li>
</ul>
<h2>v4.5.15</h2>
<h2>[4.5.15] - 2024-08-10</h2>
<h3>Compatiblity</h3>
<ul>
<li><em>(unstable-ext)</em> <code>Arg::remove</code> changed return
types</li>
</ul>
<h3>Fixes</h3>
<ul>
<li><em>(unstable-ext)</em> Make <code>Arg::remove</code> return the
removed item</li>
</ul>
<h2>v4.5.14</h2>
<h2>[4.5.14] - 2024-08-08</h2>
<h3>Features</h3>
<ul>
<li><em>(unstable-ext)</em> Added <code>Arg::add</code> for attaching
arbitrary state, like completion hints, to <code>Arg</code> without
<code>Arg</code> knowing about it</li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/clap-rs/clap/blob/master/CHANGELOG.md">clap_derive's
changelog</a>.</em></p>
<blockquote>
<h2>[4.5.18] - 2024-09-20</h2>
<h3>Features</h3>
<ul>
<li><em>(builder)</em> Expose <code>Arg::get_display_order</code> and
<code>Command::get_display_order</code></li>
</ul>
<h2>[4.5.17] - 2024-09-04</h2>
<h3>Fixes</h3>
<ul>
<li><em>(help)</em> Style required argument groups</li>
<li><em>(derive)</em> Improve error messages when unsupported fields are
used</li>
</ul>
<h2>[4.5.16] - 2024-08-15</h2>
<h3>Fixes</h3>
<ul>
<li><em>(derive)</em> Improve error messages when <code>derive</code>
feature is missing</li>
</ul>
<h2>[4.5.15] - 2024-08-10</h2>
<h3>Compatiblity</h3>
<ul>
<li><em>(unstable-ext)</em> <code>Arg::remove</code> changed return
types</li>
</ul>
<h3>Fixes</h3>
<ul>
<li><em>(unstable-ext)</em> Make <code>Arg::remove</code> return the
removed item</li>
</ul>
<h2>[4.5.14] - 2024-08-08</h2>
<h3>Features</h3>
<ul>
<li><em>(unstable-ext)</em> Added <code>Arg::add</code> for attaching
arbitrary state, like completion hints, to <code>Arg</code> without
<code>Arg</code> knowing about it</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/clap-rs/clap/commit/0d142f6c04a702b791d2dfec8327661ba1b6d16c"><code>0d142f6</code></a>
chore: Release</li>
<li><a
href="https://github.com/clap-rs/clap/commit/0facf1f370e7966a4d97bce56d1d10ca4c80d0ae"><code>0facf1f</code></a>
docs: Update changelog</li>
<li><a
href="https://github.com/clap-rs/clap/commit/ee6af99c6c5e239c0f2c92f9d1baf8aa3bb4af90"><code>ee6af99</code></a>
Merge pull request <a
href="https://redirect.github.com/clap-rs/clap/issues/5743">#5743</a>
from epage/sort</li>
<li><a
href="https://github.com/clap-rs/clap/commit/232ee106615e997f0841bb3de97eed126b929fe3"><code>232ee10</code></a>
fix(complete): Use existing display order for Arg/Command</li>
<li><a
href="https://github.com/clap-rs/clap/commit/c6b5d627a0c17527630e4086a4fe83589365d1f0"><code>c6b5d62</code></a>
feat(builder): Expose get_display_order</li>
<li><a
href="https://github.com/clap-rs/clap/commit/67d9fef9cee8f1b297aed73e6d95f78744b43a27"><code>67d9fef</code></a>
feat(complete): Give control over display order</li>
<li><a
href="https://github.com/clap-rs/clap/commit/59a61e188fbb9999db52f567e3951d3720204084"><code>59a61e1</code></a>
refactor(complete): Pull out common candidate code</li>
<li><a
href="https://github.com/clap-rs/clap/commit/144879194081212046d5566572bfa15ea9bcca35"><code>1448791</code></a>
fix(complete): Specify tags for built-in candiates</li>
<li><a
href="https://github.com/clap-rs/clap/commit/a4aa5dffdf46a2975f2b2d51ce7e618e19250ead"><code>a4aa5df</code></a>
feat(complete): Group by tag</li>
<li><a
href="https://github.com/clap-rs/clap/commit/a126149a809f01586ccb6d9299eb2fc2c87d8fe0"><code>a126149</code></a>
refactor(complete): Remove redundant dedup</li>
<li>Additional commits viewable in <a
href="https://github.com/clap-rs/clap/compare/v4.5.13...v4.5.18">compare
view</a></li>
</ul>
</details>
<br />

Updates `const_format_proc_macros` from 0.2.32 to 0.2.33
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/rodrimati1992/const_format_crates/blob/master/Changelog.md">const_format_proc_macros's
changelog</a>.</em></p>
<blockquote>
<h3>0.2.33</h3>
<p>Fixed Rust Analyzer style warning for assertion macros.</p>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li>See full diff in <a
href="https://github.com/rodrimati1992/const_format_crates/commits">compare
view</a></li>
</ul>
</details>
<br />

Updates `cpufeatures` from 0.2.13 to 0.2.14
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/RustCrypto/utils/commit/6a87dce97c9f927bea999ab957ccb6bc60a6c36f"><code>6a87dce</code></a>
cpufeatures v0.2.14 (<a
href="https://redirect.github.com/RustCrypto/utils/issues/1104">#1104</a>)</li>
<li><a
href="https://github.com/RustCrypto/utils/commit/4be67893ccece4823b606c5e29eccd44f7e07450"><code>4be6789</code></a>
aarch64-dit: initial crate (<a
href="https://redirect.github.com/RustCrypto/utils/issues/1102">#1102</a>)</li>
<li><a
href="https://github.com/RustCrypto/utils/commit/141756093ae5ee316af9cd3b459d4c5225bc86dd"><code>1417560</code></a>
README.md(s): use img.shields.io crate version badges</li>
<li><a
href="https://github.com/RustCrypto/utils/commit/cfa21ea50a22df26a52e17649e203e0c2657154d"><code>cfa21ea</code></a>
cpufeatures: add DIT support for AArch64 Linux targets (<a
href="https://redirect.github.com/RustCrypto/utils/issues/1101">#1101</a>)</li>
<li><a
href="https://github.com/RustCrypto/utils/commit/1ad40787ec88039f829144ef59b7bc506eaf07ed"><code>1ad4078</code></a>
cpufeatures: add support for DIT detection on Apple silicon (<a
href="https://redirect.github.com/RustCrypto/utils/issues/1100">#1100</a>)</li>
<li><a
href="https://github.com/RustCrypto/utils/commit/5d46aba5ef3720e854f48d93243c247e4611b125"><code>5d46aba</code></a>
block-buffer: release v0.11.0-rc.1 (<a
href="https://redirect.github.com/RustCrypto/utils/issues/1098">#1098</a>)</li>
<li>See full diff in <a
href="https://github.com/RustCrypto/utils/compare/cpufeatures-v0.2.13...cpufeatures-v0.2.14">compare
view</a></li>
</ul>
</details>
<br />

Updates `fastrand` from 2.1.0 to 2.1.1
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/smol-rs/fastrand/releases">fastrand's
releases</a>.</em></p>
<blockquote>
<h2>v2.1.1</h2>
<ul>
<li>Remove support for 128-bit targets, as they are not supported by
rustc yet. (<a
href="https://redirect.github.com/smol-rs/fastrand/issues/87">#87</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/smol-rs/fastrand/blob/master/CHANGELOG.md">fastrand's
changelog</a>.</em></p>
<blockquote>
<h1>Version 2.1.1</h1>
<ul>
<li>Remove support for 128-bit targets, as they are not supported by
rustc yet. (<a
href="https://redirect.github.com/smol-rs/fastrand/issues/87">#87</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/smol-rs/fastrand/commit/9d1a66fe46cee30e6c716812a9df467c653fa290"><code>9d1a66f</code></a>
v2.1.1</li>
<li><a
href="https://github.com/smol-rs/fastrand/commit/d05504dee3e2ec359fca62db9353de2ad3dfff40"><code>d05504d</code></a>
bugfix: Remove 128-bit value generator</li>
<li><a
href="https://github.com/smol-rs/fastrand/commit/7e60c7f688f9be3dcd4f59f216c87dac88ca2902"><code>7e60c7f</code></a>
chore: Forgot to bump the version</li>
<li>See full diff in <a
href="https://github.com/smol-rs/fastrand/compare/v2.1.0...v2.1.1">compare
view</a></li>
</ul>
</details>
<br />

Updates `flate2` from 1.0.32 to 1.0.34
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/rust-lang/flate2-rs/releases">flate2's
releases</a>.</em></p>
<blockquote>
<h2>1.0.34</h2>
<h2>What's Changed</h2>
<ul>
<li>Add minimum build test back in to CI by <a
href="https://github.com/jongiddy"><code>@​jongiddy</code></a> in <a
href="https://redirect.github.com/rust-lang/flate2-rs/pull/426">rust-lang/flate2-rs#426</a></li>
<li>docs: fix compression level range from 0-9 to 0-10 by <a
href="https://github.com/ByteBaker"><code>@​ByteBaker</code></a> in <a
href="https://redirect.github.com/rust-lang/flate2-rs/pull/427">rust-lang/flate2-rs#427</a></li>
<li>Document backend differences in compression levels by <a
href="https://github.com/Shnatsel"><code>@​Shnatsel</code></a> in <a
href="https://redirect.github.com/rust-lang/flate2-rs/pull/430">rust-lang/flate2-rs#430</a></li>
<li>Upgrade zlib-rs to 0.3.0 to get multiple bugfixes by <a
href="https://github.com/Shnatsel"><code>@​Shnatsel</code></a> in <a
href="https://redirect.github.com/rust-lang/flate2-rs/pull/428">rust-lang/flate2-rs#428</a></li>
<li>Better wording in compression level docs by <a
href="https://github.com/Shnatsel"><code>@​Shnatsel</code></a> in <a
href="https://redirect.github.com/rust-lang/flate2-rs/pull/431">rust-lang/flate2-rs#431</a></li>
</ul>
<h2>New Contributors</h2>
<ul>
<li><a href="https://github.com/ByteBaker"><code>@​ByteBaker</code></a>
made their first contribution in <a
href="https://redirect.github.com/rust-lang/flate2-rs/pull/427">rust-lang/flate2-rs#427</a></li>
<li><a href="https://github.com/Shnatsel"><code>@​Shnatsel</code></a>
made their first contribution in <a
href="https://redirect.github.com/rust-lang/flate2-rs/pull/430">rust-lang/flate2-rs#430</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/rust-lang/flate2-rs/compare/1.0.33...1.0.34">https://github.com/rust-lang/flate2-rs/compare/1.0.33...1.0.34</a></p>
<h2>1.0.33 - fix minimal manifest versions</h2>
<h2>What's Changed</h2>
<ul>
<li>Fix msrv: Run msrv checks with minimal versions by <a
href="https://github.com/NobodyXu"><code>@​NobodyXu</code></a> in <a
href="https://redirect.github.com/rust-lang/flate2-rs/pull/425">rust-lang/flate2-rs#425</a></li>
</ul>
<h2>New Contributors</h2>
<ul>
<li><a href="https://github.com/NobodyXu"><code>@​NobodyXu</code></a>
made their first contribution in <a
href="https://redirect.github.com/rust-lang/flate2-rs/pull/425">rust-lang/flate2-rs#425</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/rust-lang/flate2-rs/compare/1.0.32...1.0.33">https://github.com/rust-lang/flate2-rs/compare/1.0.32...1.0.33</a></p>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/rust-lang/flate2-rs/commit/1a28821dc116dac14178858be056e4a58ef8f501"><code>1a28821</code></a>
Merge pull request <a
href="https://redirect.github.com/rust-lang/flate2-rs/issues/431">#431</a>
from Shnatsel/better-wording</li>
<li><a
href="https://github.com/rust-lang/flate2-rs/commit/2c29780e5093b10c21954384cd97243770376814"><code>2c29780</code></a>
Merge pull request <a
href="https://redirect.github.com/rust-lang/flate2-rs/issues/428">#428</a>
from Shnatsel/upgrade-zlib-rs</li>
<li><a
href="https://github.com/rust-lang/flate2-rs/commit/423981aede8670a51d2c3aa657ae528152c0f64e"><code>423981a</code></a>
Better wording in compression level docs</li>
<li><a
href="https://github.com/rust-lang/flate2-rs/commit/da5c8cfd917b0ec2aeacc2e514b27b6bd50726e4"><code>da5c8cf</code></a>
Bump version</li>
<li><a
href="https://github.com/rust-lang/flate2-rs/commit/eeee4c641187628ec8676ffb24300c5da6bfb066"><code>eeee4c6</code></a>
Merge pull request <a
href="https://redirect.github.com/rust-lang/flate2-rs/issues/430">#430</a>
from Shnatsel/detailed-level-docs</li>
<li><a
href="https://github.com/rust-lang/flate2-rs/commit/731df32113188f3372367402b9ea2b…
fukiame pushed a commit to TelegramAt25/KernelSU-shukusai that referenced this pull request Oct 3, 2024
…tiann#2098)

Bumps the crates group with 25 updates in the /userspace/ksud directory:

| Package | From | To |
| --- | --- | --- |
| [anyhow](https://github.com/dtolnay/anyhow) | `1.0.86` | `1.0.89` |
| [clap](https://github.com/clap-rs/clap) | `4.5.16` | `4.5.18` |
| [const_format](https://github.com/rodrimati1992/const_format_crates) |
`0.2.32` | `0.2.33` |
| [serde](https://github.com/serde-rs/serde) | `1.0.208` | `1.0.210` |
| [serde_json](https://github.com/serde-rs/json) | `1.0.125` | `1.0.128`
|
| [libc](https://github.com/rust-lang/libc) | `0.2.158` | `0.2.159` |
| [is_executable](https://github.com/fitzgen/is_executable) | `1.0.1` |
`1.0.3` |
| [derive-new](https://github.com/nrc/derive-new) | `0.6.0` | `0.7.0` |
| [async-trait](https://github.com/dtolnay/async-trait) | `0.1.81` |
`0.1.83` |
| [autocfg](https://github.com/cuviper/autocfg) | `1.3.0` | `1.4.0` |
| [backtrace](https://github.com/rust-lang/backtrace-rs) | `0.3.73` |
`0.3.74` |
| [bytes](https://github.com/tokio-rs/bytes) | `1.7.1` | `1.7.2` |
| [cc](https://github.com/rust-lang/cc-rs) | `1.1.14` | `1.1.22` |
| [cpufeatures](https://github.com/RustCrypto/utils) | `0.2.13` |
`0.2.14` |
| [fastrand](https://github.com/smol-rs/fastrand) | `2.1.0` | `2.1.1` |
| [flate2](https://github.com/rust-lang/flate2-rs) | `1.0.32` | `1.0.34`
|
| [iana-time-zone](https://github.com/strawlab/iana-time-zone) |
`0.1.60` | `0.1.61` |
| [indexmap](https://github.com/indexmap-rs/indexmap) | `2.4.0` |
`2.5.0` |
| [object](https://github.com/gimli-rs/object) | `0.36.3` | `0.36.4` |
| [syn](https://github.com/dtolnay/syn) | `2.0.75` | `2.0.77` |
| [thiserror](https://github.com/dtolnay/thiserror) | `1.0.63` |
`1.0.64` |
| [tokio](https://github.com/tokio-rs/tokio) | `1.39.3` | `1.40.0` |
| [unicode-ident](https://github.com/dtolnay/unicode-ident) | `1.0.12` |
`1.0.13` |
| [unicode-width](https://github.com/unicode-rs/unicode-width) |
`0.1.13` | `0.1.14` |
| [unicode-xid](https://github.com/unicode-rs/unicode-xid) | `0.2.5` |
`0.2.6` |

Updates `anyhow` from 1.0.86 to 1.0.89
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/dtolnay/anyhow/releases">anyhow's
releases</a>.</em></p>
<blockquote>
<h2>1.0.89</h2>
<ul>
<li>Make anyhow::Error's <code>UnwindSafe</code> and
<code>RefUnwindSafe</code> impl consistently available between versions
of Rust newer and older than 1.72 (<a
href="https://redirect.github.com/dtolnay/anyhow/issues/386">#386</a>)</li>
</ul>
<h2>1.0.88</h2>
<ul>
<li>Documentation improvements</li>
</ul>
<h2>1.0.87</h2>
<ul>
<li>Support more APIs, including <code>Error::new</code> and
<code>Error::chain</code>, in no-std mode on Rust 1.81+ (<a
href="https://redirect.github.com/dtolnay/anyhow/issues/383">#383</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/dtolnay/anyhow/commit/9d3fb6d0968bd9f95a0d8bbc5269eb2496880510"><code>9d3fb6d</code></a>
Release 1.0.89</li>
<li><a
href="https://github.com/dtolnay/anyhow/commit/830c399126c1db902681130f5c4273d93767b990"><code>830c399</code></a>
Merge pull request <a
href="https://redirect.github.com/dtolnay/anyhow/issues/386">#386</a>
from dtolnay/unwindsafe</li>
<li><a
href="https://github.com/dtolnay/anyhow/commit/8454be372f2a7832436d7021b8f2f0a96db558b3"><code>8454be3</code></a>
Ensure UnwindSafe even with &quot;backtrace&quot; feature enabled and
old Rust</li>
<li><a
href="https://github.com/dtolnay/anyhow/commit/a85e414bf555ed961f59c2c69410e7b5f706df65"><code>a85e414</code></a>
Add more autotraits tests</li>
<li><a
href="https://github.com/dtolnay/anyhow/commit/139f266b903ac2eab462292495f864740446dcdc"><code>139f266</code></a>
Release 1.0.88</li>
<li><a
href="https://github.com/dtolnay/anyhow/commit/aa3ab2b9f0a8cdf4b54dae58d39a2446c5eecbb2"><code>aa3ab2b</code></a>
Merge pull request <a
href="https://redirect.github.com/dtolnay/anyhow/issues/385">#385</a>
from dtolnay/docnostd</li>
<li><a
href="https://github.com/dtolnay/anyhow/commit/44c37674d35a0899fde03ae2fdaeee0bd4c38501"><code>44c3767</code></a>
Update documentation on no-std error type conversions</li>
<li><a
href="https://github.com/dtolnay/anyhow/commit/afe93e7b167d069ac79f2c7f363b919d3793e6ce"><code>afe93e7</code></a>
Release 1.0.87</li>
<li><a
href="https://github.com/dtolnay/anyhow/commit/d58fa4b282c1149bd121419dd359eb8caf2c113d"><code>d58fa4b</code></a>
Fix outdated html_root_url</li>
<li><a
href="https://github.com/dtolnay/anyhow/commit/c18d80743cead05bd75cf2e310e7a00c515facb9"><code>c18d807</code></a>
Disable unused doc_cfg feature</li>
<li>Additional commits viewable in <a
href="https://github.com/dtolnay/anyhow/compare/1.0.86...1.0.89">compare
view</a></li>
</ul>
</details>
<br />

Updates `clap` from 4.5.16 to 4.5.18
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/clap-rs/clap/releases">clap's
releases</a>.</em></p>
<blockquote>
<h2>v4.5.18</h2>
<h2>[4.5.18] - 2024-09-20</h2>
<h3>Features</h3>
<ul>
<li><em>(builder)</em> Expose <code>Arg::get_display_order</code> and
<code>Command::get_display_order</code></li>
</ul>
<h2>v4.5.17</h2>
<h2>[4.5.17] - 2024-09-04</h2>
<h3>Fixes</h3>
<ul>
<li><em>(help)</em> Style required argument groups</li>
<li><em>(derive)</em> Improve error messages when unsupported fields are
used</li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/clap-rs/clap/blob/master/CHANGELOG.md">clap's
changelog</a>.</em></p>
<blockquote>
<h2>[4.5.18] - 2024-09-20</h2>
<h3>Features</h3>
<ul>
<li><em>(builder)</em> Expose <code>Arg::get_display_order</code> and
<code>Command::get_display_order</code></li>
</ul>
<h2>[4.5.17] - 2024-09-04</h2>
<h3>Fixes</h3>
<ul>
<li><em>(help)</em> Style required argument groups</li>
<li><em>(derive)</em> Improve error messages when unsupported fields are
used</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/clap-rs/clap/commit/d81158599f5b3a2434845a1731377eae84780b9a"><code>d811585</code></a>
chore: Release</li>
<li><a
href="https://github.com/clap-rs/clap/commit/ab948b35561b5bc64b50d6a52d799aa5ac5de187"><code>ab948b3</code></a>
docs: Update changelog</li>
<li><a
href="https://github.com/clap-rs/clap/commit/82e599e91d64ddae7231c98a91b4cd39e8c9036d"><code>82e599e</code></a>
Merge pull request <a
href="https://redirect.github.com/clap-rs/clap/issues/5602">#5602</a>
from shannmu/delimiter_values</li>
<li><a
href="https://github.com/clap-rs/clap/commit/59bf26dd56032a7a4e6d923cd37de6e72c33078e"><code>59bf26d</code></a>
feat(clap_complete): Support delimiter values in native completions</li>
<li><a
href="https://github.com/clap-rs/clap/commit/ccecab394b45bc4dd251d00b7d69737ed93d18f8"><code>ccecab3</code></a>
test(clap_complete): Add test cases for delimiter_values support</li>
<li><a
href="https://github.com/clap-rs/clap/commit/a3a476407b01f083dc06200783ad745bc45e5da8"><code>a3a4764</code></a>
docs(derive): Specify Parser::update_from semantics</li>
<li><a
href="https://github.com/clap-rs/clap/commit/df165a2da431138bcc5cd891aec922cbdeda6ded"><code>df165a2</code></a>
docs(derive): Flatten isn't just for update</li>
<li><a
href="https://github.com/clap-rs/clap/commit/5488bcfa30255c59f931f1248e854c0087b2b969"><code>5488bcf</code></a>
docs(derive): Connect more dots for Args/Subcommand</li>
<li><a
href="https://github.com/clap-rs/clap/commit/6013ad4f676dd25c5b5150557a5fb5698c3de020"><code>6013ad4</code></a>
chore: Release</li>
<li><a
href="https://github.com/clap-rs/clap/commit/f98e3ee215015055d776f91217019c33da78c975"><code>f98e3ee</code></a>
docs: Update changelog</li>
<li>Additional commits viewable in <a
href="https://github.com/clap-rs/clap/compare/clap_complete-v4.5.16...clap_complete-v4.5.18">compare
view</a></li>
</ul>
</details>
<br />

Updates `const_format` from 0.2.32 to 0.2.33
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/rodrimati1992/const_format_crates/blob/master/Changelog.md">const_format's
changelog</a>.</em></p>
<blockquote>
<h3>0.2.33</h3>
<p>Fixed Rust Analyzer style warning for assertion macros.</p>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li>See full diff in <a
href="https://github.com/rodrimati1992/const_format_crates/commits">compare
view</a></li>
</ul>
</details>
<br />

Updates `serde` from 1.0.208 to 1.0.210
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/serde-rs/serde/releases">serde's
releases</a>.</em></p>
<blockquote>
<h2>v1.0.210</h2>
<ul>
<li>Support serializing and deserializing <code>IpAddr</code> and
<code>SocketAddr</code> in no-std mode on Rust 1.77+ (<a
href="https://redirect.github.com/serde-rs/serde/issues/2816">#2816</a>,
thanks <a
href="https://github.com/MathiasKoch"><code>@​MathiasKoch</code></a>)</li>
<li>Make <code>serde::ser::StdError</code> and
<code>serde::de::StdError</code> equivalent to
<code>core::error::Error</code> on Rust 1.81+ (<a
href="https://redirect.github.com/serde-rs/serde/issues/2818">#2818</a>)</li>
</ul>
<h2>v1.0.209</h2>
<ul>
<li>Fix deserialization of empty structs and empty tuples inside of
untagged enums (<a
href="https://redirect.github.com/serde-rs/serde/issues/2805">#2805</a>,
thanks <a
href="https://github.com/Mingun"><code>@​Mingun</code></a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/serde-rs/serde/commit/89c4b02bf32ceae5b17d89f93a452ccc195ca038"><code>89c4b02</code></a>
Release 1.0.210</li>
<li><a
href="https://github.com/serde-rs/serde/commit/eeb8e44cda15f929796cd72241b0311e0bd04e67"><code>eeb8e44</code></a>
Merge pull request <a
href="https://redirect.github.com/serde-rs/serde/issues/2818">#2818</a>
from dtolnay/coreerror</li>
<li><a
href="https://github.com/serde-rs/serde/commit/785c2d9605ee73cc172dfd421228c1dccca984c9"><code>785c2d9</code></a>
Stabilize no-std StdError trait</li>
<li><a
href="https://github.com/serde-rs/serde/commit/d549f048e10bcb5e677afaf7b99d0ed3604b113b"><code>d549f04</code></a>
Reformat parse_ip_impl definition and calls</li>
<li><a
href="https://github.com/serde-rs/serde/commit/4c0dd63011434905265e2710bb9186e09e4f8ec2"><code>4c0dd63</code></a>
Delete attr support from core::net deserialization macros</li>
<li><a
href="https://github.com/serde-rs/serde/commit/26fb1341651c4e0ae4d58c675db3ca2a0d6e12c2"><code>26fb134</code></a>
Relocate cfg attrs out of parse_ip_impl and parse_socket_impl</li>
<li><a
href="https://github.com/serde-rs/serde/commit/07e614b52b5ab3387d86d3198e5f52cd1f5ff3cb"><code>07e614b</code></a>
Merge pull request <a
href="https://redirect.github.com/serde-rs/serde/issues/2817">#2817</a>
from dtolnay/corenet</li>
<li><a
href="https://github.com/serde-rs/serde/commit/b1f899fbe81f070803d9f7ca6e5d1cc3f19c9ea2"><code>b1f899f</code></a>
Delete doc(cfg) attribute from impls that are supported in no-std</li>
<li><a
href="https://github.com/serde-rs/serde/commit/b4f860e62767828beb3ef91721b6c56a31f9baad"><code>b4f860e</code></a>
Merge pull request <a
href="https://redirect.github.com/serde-rs/serde/issues/2816">#2816</a>
from MathiasKoch/chore/core-net</li>
<li><a
href="https://github.com/serde-rs/serde/commit/d940fe1b4934f097b0333dcb87bec5ee308d39cd"><code>d940fe1</code></a>
Reuse existing Buf wrapper as replacement for std::io::Write</li>
<li>Additional commits viewable in <a
href="https://github.com/serde-rs/serde/compare/v1.0.208...v1.0.210">compare
view</a></li>
</ul>
</details>
<br />

Updates `serde_json` from 1.0.125 to 1.0.128
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/serde-rs/json/releases">serde_json's
releases</a>.</em></p>
<blockquote>
<h2>1.0.128</h2>
<ul>
<li>Support serializing maps containing 128-bit integer keys to
serde_json::Value (<a
href="https://redirect.github.com/serde-rs/json/issues/1188">#1188</a>,
thanks <a
href="https://github.com/Mrreadiness"><code>@​Mrreadiness</code></a>)</li>
</ul>
<h2>1.0.127</h2>
<ul>
<li>Add more removal methods to OccupiedEntry (<a
href="https://redirect.github.com/serde-rs/json/issues/1179">#1179</a>,
thanks <a
href="https://github.com/GREsau"><code>@​GREsau</code></a>)</li>
</ul>
<h2>1.0.126</h2>
<ul>
<li>Improve string parsing on targets that use 32-bit pointers but also
have fast 64-bit integer arithmetic, such as
aarch64-unknown-linux-gnu_ilp32 and x86_64-unknown-linux-gnux32 (<a
href="https://redirect.github.com/serde-rs/json/issues/1182">#1182</a>,
thanks <a href="https://github.com/CryZe"><code>@​CryZe</code></a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/serde-rs/json/commit/d96b1d9b643b49a0bb92a8cf280daf6aa08f37cc"><code>d96b1d9</code></a>
Release 1.0.128</li>
<li><a
href="https://github.com/serde-rs/json/commit/599228d5dc52a0f1595fe4bd901821f70d0317a5"><code>599228d</code></a>
Merge pull request <a
href="https://redirect.github.com/serde-rs/json/issues/1188">#1188</a>
from Mrreadiness/feat/add-hashmap-key-128-serializer</li>
<li><a
href="https://github.com/serde-rs/json/commit/5416cee6c5ad355907f6e9d5f6039b994c69f768"><code>5416cee</code></a>
feat: add support for 128 bit HashMap key serialization</li>
<li><a
href="https://github.com/serde-rs/json/commit/27a4ca9d7a62394fe8f0103f3d91de59f055a4c4"><code>27a4ca9</code></a>
Upload CI Cargo.lock for reproducing failures</li>
<li><a
href="https://github.com/serde-rs/json/commit/5ebf65cc480f90714c94f82099ca9161d80cbb10"><code>5ebf65c</code></a>
Release 1.0.127</li>
<li><a
href="https://github.com/serde-rs/json/commit/f287a3b1a93ecb1a11cee31cb638bd9523a58add"><code>f287a3b</code></a>
Merge pull request 1179 from GREsau/patch-1</li>
<li><a
href="https://github.com/serde-rs/json/commit/ec980b02774abbff12fd3e26b0a1582eb14dcef7"><code>ec980b0</code></a>
Release 1.0.126</li>
<li><a
href="https://github.com/serde-rs/json/commit/e6282b0c479947805a33c7f167b1d19dd4c7ad4f"><code>e6282b0</code></a>
Merge pull request <a
href="https://redirect.github.com/serde-rs/json/issues/1184">#1184</a>
from serde-rs/fastarithmetic</li>
<li><a
href="https://github.com/serde-rs/json/commit/ffc4a43453029cdc5603cfe3ef08414488fd45de"><code>ffc4a43</code></a>
Improve cfg names for fast arithmetic</li>
<li><a
href="https://github.com/serde-rs/json/commit/4b1048d0ecc4d326d6657531689513f182a4f850"><code>4b1048d</code></a>
Merge pull request <a
href="https://redirect.github.com/serde-rs/json/issues/1183">#1183</a>
from serde-rs/arithmetic</li>
<li>Additional commits viewable in <a
href="https://github.com/serde-rs/json/compare/1.0.125...1.0.128">compare
view</a></li>
</ul>
</details>
<br />

Updates `libc` from 0.2.158 to 0.2.159
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/rust-lang/libc/releases">libc's
releases</a>.</em></p>
<blockquote>
<h2>0.2.159</h2>
<h3>Added</h3>
<ul>
<li>Android: add more <code>AT_*</code> constants in <a
href="https://redirect.github.com/rust-lang/libc/pull/3779">rust-lang/libc#3779</a></li>
<li>Apple: add missing <code>NOTE_*</code> constants in <a
href="https://redirect.github.com/rust-lang/libc/pull/3883">rust-lang/libc#3883</a></li>
<li>Hermit: add missing error numbers in <a
href="https://redirect.github.com/rust-lang/libc/pull/3858">rust-lang/libc#3858</a></li>
<li>Hurd: add <code>__timeval</code> for 64-bit support in <a
href="https://redirect.github.com/rust-lang/libc/pull/3786">rust-lang/libc#3786</a></li>
<li>Linux: add <code>epoll_pwait2</code> in <a
href="https://redirect.github.com/rust-lang/libc/pull/3868">rust-lang/libc#3868</a></li>
<li>Linux: add <code>mq_notify</code> in <a
href="https://redirect.github.com/rust-lang/libc/pull/3849">rust-lang/libc#3849</a></li>
<li>Linux: add missing <code>NFT_CT_*</code> constants in <a
href="https://redirect.github.com/rust-lang/libc/pull/3844">rust-lang/libc#3844</a></li>
<li>Linux: add the <code>fchmodat2</code> syscall in <a
href="https://redirect.github.com/rust-lang/libc/pull/3588">rust-lang/libc#3588</a></li>
<li>Linux: add the <code>mseal</code> syscall in <a
href="https://redirect.github.com/rust-lang/libc/pull/3798">rust-lang/libc#3798</a></li>
<li>OpenBSD: add <code>sendmmsg</code> and <code>recvmmsg</code> in <a
href="https://redirect.github.com/rust-lang/libc/pull/3831">rust-lang/libc#3831</a></li>
<li>Unix: add <code>IN6ADDR_ANY_INIT</code> and
<code>IN6ADDR_LOOPBACK_INIT</code> in <a
href="https://redirect.github.com/rust-lang/libc/pull/3693">rust-lang/libc#3693</a></li>
<li>VxWorks: add <code>S_ISVTX</code> in <a
href="https://redirect.github.com/rust-lang/libc/pull/3768">rust-lang/libc#3768</a></li>
<li>VxWorks: add <code>vxCpuLib</code> and <code>taskLib</code>
functions <a
href="https://redirect.github.com/rust-lang/libc/pull/3861">rust-lang/libc#3861</a></li>
<li>WASIp2: add definitions for <code>std::net</code> support in <a
href="https://redirect.github.com/rust-lang/libc/pull/3892">rust-lang/libc#3892</a></li>
</ul>
<h3>Fixed</h3>
<ul>
<li>Correctly handle version checks when <code>clippy-driver</code> is
used <a
href="https://redirect.github.com/rust-lang/libc/pull/3893">rust-lang/libc#3893</a></li>
</ul>
<h3>Changed</h3>
<ul>
<li>EspIdf: change signal constants to c_int in <a
href="https://redirect.github.com/rust-lang/libc/pull/3895">rust-lang/libc#3895</a></li>
<li>HorizonOS: update network definitions in <a
href="https://redirect.github.com/rust-lang/libc/pull/3863">rust-lang/libc#3863</a></li>
<li>Linux: combine <code>ioctl</code> APIs in <a
href="https://redirect.github.com/rust-lang/libc/pull/3722">rust-lang/libc#3722</a></li>
<li>WASI: enable CI testing in <a
href="https://redirect.github.com/rust-lang/libc/pull/3869">rust-lang/libc#3869</a></li>
<li>WASIp2: enable CI testing in <a
href="https://redirect.github.com/rust-lang/libc/pull/3870">rust-lang/libc#3870</a></li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/rust-lang/libc/blob/0.2.159/CHANGELOG.md">libc's
changelog</a>.</em></p>
<blockquote>
<h2><a
href="https://github.com/rust-lang/libc/compare/0.2.158...0.2.159">0.2.159</a>
- 2024-09-24</h2>
<h3>Added</h3>
<ul>
<li>Android: add more <code>AT_*</code> constants in <a
href="https://redirect.github.com/rust-lang/libc/pull/3779">rust-lang/libc#3779</a></li>
<li>Apple: add missing <code>NOTE_*</code> constants in <a
href="https://redirect.github.com/rust-lang/libc/pull/3883">rust-lang/libc#3883</a></li>
<li>Hermit: add missing error numbers in <a
href="https://redirect.github.com/rust-lang/libc/pull/3858">rust-lang/libc#3858</a></li>
<li>Hurd: add <code>__timeval</code> for 64-bit support in <a
href="https://redirect.github.com/rust-lang/libc/pull/3786">rust-lang/libc#3786</a></li>
<li>Linux: add <code>epoll_pwait2</code> in <a
href="https://redirect.github.com/rust-lang/libc/pull/3868">rust-lang/libc#3868</a></li>
<li>Linux: add <code>mq_notify</code> in <a
href="https://redirect.github.com/rust-lang/libc/pull/3849">rust-lang/libc#3849</a></li>
<li>Linux: add missing <code>NFT_CT_*</code> constants in <a
href="https://redirect.github.com/rust-lang/libc/pull/3844">rust-lang/libc#3844</a></li>
<li>Linux: add the <code>fchmodat2</code> syscall in <a
href="https://redirect.github.com/rust-lang/libc/pull/3588">rust-lang/libc#3588</a></li>
<li>Linux: add the <code>mseal</code> syscall in <a
href="https://redirect.github.com/rust-lang/libc/pull/3798">rust-lang/libc#3798</a></li>
<li>OpenBSD: add <code>sendmmsg</code> and <code>recvmmsg</code> in <a
href="https://redirect.github.com/rust-lang/libc/pull/3831">rust-lang/libc#3831</a></li>
<li>Unix: add <code>IN6ADDR_ANY_INIT</code> and
<code>IN6ADDR_LOOPBACK_INIT</code> in <a
href="https://redirect.github.com/rust-lang/libc/pull/3693">rust-lang/libc#3693</a></li>
<li>VxWorks: add <code>S_ISVTX</code> in <a
href="https://redirect.github.com/rust-lang/libc/pull/3768">rust-lang/libc#3768</a></li>
<li>VxWorks: add <code>vxCpuLib</code> and <code>taskLib</code>
functions <a
href="https://redirect.github.com/rust-lang/libc/pull/3861">rust-lang/libc#3861</a></li>
<li>WASIp2: add definitions for <code>std::net</code> support in <a
href="https://redirect.github.com/rust-lang/libc/pull/3892">rust-lang/libc#3892</a></li>
</ul>
<h3>Fixed</h3>
<ul>
<li>Correctly handle version checks when <code>clippy-driver</code> is
used <a
href="https://redirect.github.com/rust-lang/libc/pull/3893">rust-lang/libc#3893</a></li>
</ul>
<h3>Changed</h3>
<ul>
<li>EspIdf: change signal constants to c_int in <a
href="https://redirect.github.com/rust-lang/libc/pull/3895">rust-lang/libc#3895</a></li>
<li>HorizonOS: update network definitions in <a
href="https://redirect.github.com/rust-lang/libc/pull/3863">rust-lang/libc#3863</a></li>
<li>Linux: combine <code>ioctl</code> APIs in <a
href="https://redirect.github.com/rust-lang/libc/pull/3722">rust-lang/libc#3722</a></li>
<li>WASI: enable CI testing in <a
href="https://redirect.github.com/rust-lang/libc/pull/3869">rust-lang/libc#3869</a></li>
<li>WASIp2: enable CI testing in <a
href="https://redirect.github.com/rust-lang/libc/pull/3870">rust-lang/libc#3870</a></li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/rust-lang/libc/commit/7373a1abe57da20efae9fd2ca891d7b905c19e03"><code>7373a1a</code></a>
chore: release (<a
href="https://redirect.github.com/rust-lang/libc/issues/3862">#3862</a>)</li>
<li><a
href="https://github.com/rust-lang/libc/commit/48668be46be0dbc2d3dfcf942778c37a07d38a87"><code>48668be</code></a>
Merge pull request <a
href="https://redirect.github.com/rust-lang/libc/issues/3931">#3931</a>
from tgross35/backport-remove-tmp-file</li>
<li><a
href="https://github.com/rust-lang/libc/commit/28bb64b1fe678ca090f9af08d786949d53285940"><code>28bb64b</code></a>
Remove temporary file that was added by accident</li>
<li><a
href="https://github.com/rust-lang/libc/commit/a515d07dd95093bc1c3a7b716f0936d2d0b989db"><code>a515d07</code></a>
Merge pull request <a
href="https://redirect.github.com/rust-lang/libc/issues/3904">#3904</a>
from tgross35/backport-buildrs-fix</li>
<li><a
href="https://github.com/rust-lang/libc/commit/abcb8f87986c8f57a28c4f67d7939272f4f8cbad"><code>abcb8f8</code></a>
Simplify the RUSTC_WRAPPER check</li>
<li><a
href="https://github.com/rust-lang/libc/commit/507833559bd0bfe04b5139c1607c3dc3208174f5"><code>5078335</code></a>
Fix rustc version when <code>clippy-driver</code> is used</li>
<li><a
href="https://github.com/rust-lang/libc/commit/57a7d465fa69c85bb96c98c84762ada90ad02077"><code>57a7d46</code></a>
Merge pull request <a
href="https://redirect.github.com/rust-lang/libc/issues/3902">#3902</a>
from tgross35/backport-horizon-network</li>
<li><a
href="https://github.com/rust-lang/libc/commit/a3e88691a9a1a41867b0692b67cc50f5b1d39eb2"><code>a3e8869</code></a>
Revise network definitions for HorizonOS</li>
<li><a
href="https://github.com/rust-lang/libc/commit/fdd3a268960639b4714c2829976b87b374fa0f9f"><code>fdd3a26</code></a>
Merge pull request <a
href="https://redirect.github.com/rust-lang/libc/issues/3900">#3900</a>
from tgross35/espid-cherry-pick</li>
<li><a
href="https://github.com/rust-lang/libc/commit/35060e8eb0bd7a64722fc7ff8ef475f6b15384a9"><code>35060e8</code></a>
Merge pull request <a
href="https://redirect.github.com/rust-lang/libc/issues/3901">#3901</a>
from tgross35/backport-epoll_pwait2</li>
<li>Additional commits viewable in <a
href="https://github.com/rust-lang/libc/compare/0.2.158...0.2.159">compare
view</a></li>
</ul>
</details>
<br />

Updates `is_executable` from 1.0.1 to 1.0.3
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/fitzgen/is_executable/commit/cfe991224073cdab13ff6a8133d1cacd8182e21a"><code>cfe9912</code></a>
Bump to version 1.0.3</li>
<li><a
href="https://github.com/fitzgen/is_executable/commit/d6fcf2f526963b4e12ab063fca255bbe75bca178"><code>d6fcf2f</code></a>
Remove old test about README.md being in sync with module docs</li>
<li><a
href="https://github.com/fitzgen/is_executable/commit/95f27a6d3dae185ee1332728e959e4ff7c6890d9"><code>95f27a6</code></a>
Remove old CI</li>
<li><a
href="https://github.com/fitzgen/is_executable/commit/e70c103b81b5e5e7f25d7973605181cc622f2578"><code>e70c103</code></a>
Update badges in README</li>
<li><a
href="https://github.com/fitzgen/is_executable/commit/61d2e9ba8cf05a1410ca69fd157ca234c65a8af7"><code>61d2e9b</code></a>
Add github actions</li>
<li><a
href="https://github.com/fitzgen/is_executable/commit/001b334761623dcc0182dded9f1e3b949f7cf79a"><code>001b334</code></a>
Bump to version 1.0.2</li>
<li><a
href="https://github.com/fitzgen/is_executable/commit/fab168c19690b6247f9e983fd0e0d0d8599c3bef"><code>fab168c</code></a>
Merge pull request <a
href="https://redirect.github.com/fitzgen/is_executable/issues/14">#14</a>
from lucieleblanc/master</li>
<li><a
href="https://github.com/fitzgen/is_executable/commit/82f9c68782656eb9ec2fcad978fce3c9e60a3072"><code>82f9c68</code></a>
replace is_file() --&gt; exists() because symlinks are ok</li>
<li><a
href="https://github.com/fitzgen/is_executable/commit/441c1c7df30116f3a4a1b8a999e457816d77cf7a"><code>441c1c7</code></a>
add file existence check before reading extension</li>
<li><a
href="https://github.com/fitzgen/is_executable/commit/ea10f6b2f8456bdcc5300027c5605ff6089b371c"><code>ea10f6b</code></a>
Merge pull request <a
href="https://redirect.github.com/fitzgen/is_executable/issues/11">#11</a>
from davide125/exclude</li>
<li>Additional commits viewable in <a
href="https://github.com/fitzgen/is_executable/compare/v1.0.1...v1.0.3">compare
view</a></li>
</ul>
</details>
<br />

Updates `derive-new` from 0.6.0 to 0.7.0
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/nrc/derive-new/commit/6626d8f566ee523ead38fe789b171f1b46993e49"><code>6626d8f</code></a>
Update compiletest</li>
<li><a
href="https://github.com/nrc/derive-new/commit/1e024ddf396e06690c0b39baa5a4f996ae88404b"><code>1e024dd</code></a>
cargo update, etc.</li>
<li><a
href="https://github.com/nrc/derive-new/commit/3389ef278665f8e0be249b6f4bd3cbfc727160a8"><code>3389ef2</code></a>
Fix doc tests</li>
<li><a
href="https://github.com/nrc/derive-new/commit/bd4486d85de87d5a543a7604f4e8f136c8b0e973"><code>bd4486d</code></a>
implement <code>into</code> and <code>into_iter</code></li>
<li><a
href="https://github.com/nrc/derive-new/commit/a9230ace30ffc43836e0e49e42e1203c7f079732"><code>a9230ac</code></a>
fix tests</li>
<li><a
href="https://github.com/nrc/derive-new/commit/77cb8287d22ca3aff803577a49321886895a43ee"><code>77cb828</code></a>
Merge pull request <a
href="https://redirect.github.com/nrc/derive-new/issues/67">#67</a> from
Paragit-Solutions/implement-new-method-visibility</li>
<li><a
href="https://github.com/nrc/derive-new/commit/cacbadabd235a83e978fcd52d9ed83dffff43abd"><code>cacbada</code></a>
Merge pull request <a
href="https://redirect.github.com/nrc/derive-new/issues/66">#66</a> from
shellixyz/patch-1</li>
<li><a
href="https://github.com/nrc/derive-new/commit/d11f63160c0829dbf06a1aab30f431c9b58ecc37"><code>d11f631</code></a>
Add documentation</li>
<li><a
href="https://github.com/nrc/derive-new/commit/3311408f8fc4844e857708bf2a222c939ac1066d"><code>3311408</code></a>
Add visibility to test struct to test compilation and correct macro
expansion</li>
<li><a
href="https://github.com/nrc/derive-new/commit/61853b79702bae6d0ffa343718310f20463687a4"><code>61853b7</code></a>
Make the default visibility public</li>
<li>Additional commits viewable in <a
href="https://github.com/nrc/derive-new/compare/0.6.0...0.7">compare
view</a></li>
</ul>
</details>
<br />

Updates `async-trait` from 0.1.81 to 0.1.83
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/dtolnay/async-trait/releases">async-trait's
releases</a>.</em></p>
<blockquote>
<h2>0.1.83</h2>
<ul>
<li>Prevent needless_arbitrary_self_type lint being produced in
generated code (<a
href="https://redirect.github.com/dtolnay/async-trait/issues/278">#278</a>)</li>
</ul>
<h2>0.1.82</h2>
<ul>
<li>Prevent elided_named_lifetimes lint being produced in generated code
(<a
href="https://redirect.github.com/dtolnay/async-trait/issues/276">#276</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/dtolnay/async-trait/commit/e6b4d471c64156338fb87386b7a7ad8543c3a205"><code>e6b4d47</code></a>
Release 0.1.83</li>
<li><a
href="https://github.com/dtolnay/async-trait/commit/bfe8d617660237b27eee620181586a16ff2f6a25"><code>bfe8d61</code></a>
Merge pull request <a
href="https://redirect.github.com/dtolnay/async-trait/issues/278">#278</a>
from dtolnay/arbself</li>
<li><a
href="https://github.com/dtolnay/async-trait/commit/7bd974b3a4db2c3ab321de2976d09d3ea2b82348"><code>7bd974b</code></a>
Ignore needless_arbitrary_self_type clippy lint in generated code</li>
<li><a
href="https://github.com/dtolnay/async-trait/commit/b53b4e755402ef91d2104d40b8f303ad0c56d2f9"><code>b53b4e7</code></a>
Add regression test for issue 277</li>
<li><a
href="https://github.com/dtolnay/async-trait/commit/f8e5bb43181450a17068f160e8a51d410ede1705"><code>f8e5bb4</code></a>
Release 0.1.82</li>
<li><a
href="https://github.com/dtolnay/async-trait/commit/8fbf118de30d3d30416d5a2dff496513433171c4"><code>8fbf118</code></a>
Merge pull request <a
href="https://redirect.github.com/dtolnay/async-trait/issues/276">#276</a>
from dtolnay/elidednamed</li>
<li><a
href="https://github.com/dtolnay/async-trait/commit/6fa246a0546fc678c4812ccb59306b6b264c27a0"><code>6fa246a</code></a>
Ignore nightly's new elided_named_lifetimes lint in generated code</li>
<li><a
href="https://github.com/dtolnay/async-trait/commit/d542a0dd74f366995e5924edc2d6ac7661e5d9ca"><code>d542a0d</code></a>
Upload CI Cargo.lock for reproducing failures</li>
<li><a
href="https://github.com/dtolnay/async-trait/commit/8828c35a86442dd05b6ac3aab5f0bac769e246f0"><code>8828c35</code></a>
Sort dependency features in Cargo.toml</li>
<li><a
href="https://github.com/dtolnay/async-trait/commit/ba9793af3f3936e2373ab4c482bf49ac67009df8"><code>ba9793a</code></a>
Update ui test suite to nightly-2024-08-11</li>
<li>Additional commits viewable in <a
href="https://github.com/dtolnay/async-trait/compare/0.1.81...0.1.83">compare
view</a></li>
</ul>
</details>
<br />

Updates `autocfg` from 1.3.0 to 1.4.0
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/cuviper/autocfg/commit/d07df6624a4573803a29397c0ccf636aa0b3d153"><code>d07df66</code></a>
Merge pull request <a
href="https://redirect.github.com/cuviper/autocfg/issues/73">#73</a>
from cuviper/release-1.4.0</li>
<li><a
href="https://github.com/cuviper/autocfg/commit/f6066f016441c2a25e0fa0d9d0521b1a79b0e14c"><code>f6066f0</code></a>
Release 1.4.0</li>
<li><a
href="https://github.com/cuviper/autocfg/commit/8af60eca650aed24db3042dbd0a2e1f61016b95e"><code>8af60ec</code></a>
Merge pull request <a
href="https://redirect.github.com/cuviper/autocfg/issues/70">#70</a>
from Techcable/feature/rustc-check-cfg</li>
<li><a
href="https://github.com/cuviper/autocfg/commit/52a995b6723ae015fbed7312d56803492f01e10a"><code>52a995b</code></a>
Apply suggestions from code review</li>
<li><a
href="https://github.com/cuviper/autocfg/commit/a8703c163f5aa66819f515356530420955374386"><code>a8703c1</code></a>
Attempt rust 1.0 compat for ci/verify-check-cfg</li>
<li><a
href="https://github.com/cuviper/autocfg/commit/ac78be804dbcf9e616d69a93c0ba918adc6a003a"><code>ac78be8</code></a>
Add ci test crate for check-cfg</li>
<li><a
href="https://github.com/cuviper/autocfg/commit/0b4a7617ad0e6ccf271dac7ab920a731195fab32"><code>0b4a761</code></a>
Have emit_has methods delegate wherever possible</li>
<li><a
href="https://github.com/cuviper/autocfg/commit/546f7c6c1c0e25b2dca136675934348118f603d2"><code>546f7c6</code></a>
Fix minor doc issues</li>
<li><a
href="https://github.com/cuviper/autocfg/commit/e0e0f18f54fb60f9c42a01c6571edcdab4542db6"><code>e0e0f18</code></a>
Automatically emit <code>rustc-check-cfg</code> directives for
AutoCfg</li>
<li><a
href="https://github.com/cuviper/autocfg/commit/1953a17319e667dd2ead9a4eae0645ed939eef24"><code>1953a17</code></a>
Merge pull request <a
href="https://redirect.github.com/cuviper/autocfg/issues/72">#72</a>
from cuviper/pretty-way</li>
<li>Additional commits viewable in <a
href="https://github.com/cuviper/autocfg/compare/1.3.0...1.4.0">compare
view</a></li>
</ul>
</details>
<br />

Updates `backtrace` from 0.3.73 to 0.3.74
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/rust-lang/backtrace-rs/releases">backtrace's
releases</a>.</em></p>
<blockquote>
<h2>0.3.74</h2>
<h2>What's Changed</h2>
<ul>
<li>QNX Neutrino 7.0 support, thanks to <a
href="https://github.com/nyurik"><code>@​nyurik</code></a> in <a
href="https://redirect.github.com/rust-lang/backtrace-rs/pull/648">rust-lang/backtrace-rs#648</a></li>
<li>Cleaned up our Android support. This should massively improve
backtraces for ones with the API level sufficient to ship with
libunwind, etc. Unfortunately, it comes at the cost of dropping support
for older ones! Thanks to <a
href="https://github.com/fengys"><code>@​fengys</code></a> in <a
href="https://redirect.github.com/rust-lang/backtrace-rs/pull/656">rust-lang/backtrace-rs#656</a></li>
<li>Made PrintFmt, which was using the
<code>Enum::__NonExhaustiveVariant</code> pattern, use
<code>#[non_exhaustive]</code> for real. Don't @ me if you were matching
on that! Thanks to <a
href="https://github.com/nyurik"><code>@​nyurik</code></a> in <a
href="https://redirect.github.com/rust-lang/backtrace-rs/pull/651">rust-lang/backtrace-rs#651</a></li>
<li>Massively cleaned up the windows code! We moved from winapi to
windows-sys with windows-targets thanks to <a
href="https://github.com/CraftSpider"><code>@​CraftSpider</code></a> and
<a href="https://github.com/ChrisDenton"><code>@​ChrisDenton</code></a>
in
<ul>
<li>Don't cast HANDLE to usize and back by <a
href="https://github.com/CraftSpider"><code>@​CraftSpider</code></a> in
<a
href="https://redirect.github.com/rust-lang/backtrace-rs/pull/635">rust-lang/backtrace-rs#635</a></li>
<li>Switch from <code>winapi</code> to <code>windows-sys</code> by <a
href="https://github.com/CraftSpider"><code>@​CraftSpider</code></a> in
<a
href="https://redirect.github.com/rust-lang/backtrace-rs/pull/641">rust-lang/backtrace-rs#641</a></li>
<li>Update windows bindings and use windows-targets by <a
href="https://github.com/ChrisDenton"><code>@​ChrisDenton</code></a> in
<a
href="https://redirect.github.com/rust-lang/backtrace-rs/pull/653">rust-lang/backtrace-rs#653</a></li>
</ul>
</li>
<li>A bunch of updated dependencies. Thanks <a
href="https://github.com/djc"><code>@​djc</code></a> and <a
href="https://github.com/khuey"><code>@​khuey</code></a>!</li>
<li>Sorry if you were testing this code in miri! It started yelling
about sussy casts. A lot. We did a bunch of internal cleanups that
should make it quiet down, thanks to <a
href="https://github.com/workingjubilee"><code>@​workingjubilee</code></a>
in <a
href="https://redirect.github.com/rust-lang/backtrace-rs/pull/641">rust-lang/backtrace-rs#641</a></li>
<li>Uhhh we had to tweak <code>dl_iterate_phdr</code> in <a
href="https://redirect.github.com/rust-lang/backtrace-rs/pull/660">rust-lang/backtrace-rs#660</a>
after Android revealed it was... kind of unsound actually and not doing
things like checking for null pointers before making slices! WHOOPS!
Thanks to <a
href="https://github.com/saethlin"><code>@​saethlin</code></a> for
implementing detection for precisely that in rustc! It's really hard to
find soundness issues in inherited codebases like this one...</li>
</ul>
<h2>New Contributors</h2>
<ul>
<li><a
href="https://github.com/CraftSpider"><code>@​CraftSpider</code></a>
made their first contribution in <a
href="https://redirect.github.com/rust-lang/backtrace-rs/pull/635">rust-lang/backtrace-rs#635</a></li>
<li><a
href="https://github.com/fengys1996"><code>@​fengys1996</code></a> made
their first contribution in <a
href="https://redirect.github.com/rust-lang/backtrace-rs/pull/656">rust-lang/backtrace-rs#656</a></li>
<li><a href="https://github.com/djc"><code>@​djc</code></a> made their
first contribution in <a
href="https://redirect.github.com/rust-lang/backtrace-rs/pull/657">rust-lang/backtrace-rs#657</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/rust-lang/backtrace-rs/compare/0.3.73...0.3.74">https://github.com/rust-lang/backtrace-rs/compare/0.3.73...0.3.74</a></p>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/rust-lang/backtrace-rs/commit/38d49aa0395c50047ab26e418a0cb30d9955fb64"><code>38d49aa</code></a>
Merge pull request <a
href="https://redirect.github.com/rust-lang/backtrace-rs/issues/658">#658</a>
from workingjubilee/cut-0.3.74</li>
<li><a
href="https://github.com/rust-lang/backtrace-rs/commit/c1749ce9a8cc0105b9d224e66f9ce4632133c1ea"><code>c1749ce</code></a>
Cut backtrace 0.3.74</li>
<li><a
href="https://github.com/rust-lang/backtrace-rs/commit/230570f2dac80a601f5c0b30da00cc9480bd35eb"><code>230570f</code></a>
Merge pull request <a
href="https://redirect.github.com/rust-lang/backtrace-rs/issues/660">#660</a>
from workingjubilee/dont-unsoundly-iterate-phdr</li>
<li><a
href="https://github.com/rust-lang/backtrace-rs/commit/153f510013e9d486103dac7994d7f75205af397a"><code>153f510</code></a>
Do not destructure maybe-uninit fields</li>
<li><a
href="https://github.com/rust-lang/backtrace-rs/commit/38589464ed3a901794f5858ccbd7f996f6712f64"><code>3858946</code></a>
Revise dl_iterate_phdr callback to be sound-ish</li>
<li><a
href="https://github.com/rust-lang/backtrace-rs/commit/7d062c63749a4c07d9307c96b6cd9485ccd1ad18"><code>7d062c6</code></a><code>rust-lang/backtrace-rs#653</code></li>
<li><a
href="https://github.com/rust-lang/backtrace-rs/commit/fc37b22dc8a384d93f6b7b4817266eec6433875e"><code>fc37b22</code></a><code>rust-lang/backtrace-rs#657</code></li>
<li><a
href="https://github.com/rust-lang/backtrace-rs/commit/600beaa5074be0f40279584450d995c319061ce8"><code>600beaa</code></a><code>rust-lang/backtrace-rs#648</code></li>
<li><a
href="https://github.com/rust-lang/backtrace-rs/commit/84b6c1d56f4bd1b4297187db863c2db6d436c1cf"><code>84b6c1d</code></a><code>rust-lang/backtrace-rs#652</code></li>
<li><a
href="https://github.com/rust-lang/backtrace-rs/commit/95c3bacab9364620864208b651e77a524900480d"><code>95c3bac</code></a>
Make enum
<code>print::PrintFmt</code><code>rust-lang/backtrace-rs#651</code></li>
<li>Additional commits viewable in <a
href="https://github.com/rust-lang/backtrace-rs/compare/0.3.73...0.3.74">compare
view</a></li>
</ul>
</details>
<br />

Updates `bytes` from 1.7.1 to 1.7.2
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/tokio-rs/bytes/releases">bytes's
releases</a>.</em></p>
<blockquote>
<h2>Bytes 1.7.2</h2>
<h1>1.7.2 (September 17, 2024)</h1>
<h3>Fixed</h3>
<ul>
<li>Fix default impl of <code>Buf::{get_int, get_int_le}</code> (<a
href="https://redirect.github.com/tokio-rs/bytes/issues/732">#732</a>)</li>
</ul>
<h3>Documented</h3>
<ul>
<li>Fix double spaces in comments and doc comments (<a
href="https://redirect.github.com/tokio-rs/bytes/issues/731">#731</a>)</li>
</ul>
<h3>Internal changes</h3>
<ul>
<li>Ensure BytesMut::advance reduces capacity (<a
href="https://redirect.github.com/tokio-rs/bytes/issues/728">#728</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/tokio-rs/bytes/blob/master/CHANGELOG.md">bytes's
changelog</a>.</em></p>
<blockquote>
<h1>1.7.2 (September 17, 2024)</h1>
<h3>Fixed</h3>
<ul>
<li>Fix default impl of <code>Buf::{get_int, get_int_le}</code> (<a
href="https://redirect.github.com/tokio-rs/bytes/issues/732">#732</a>)</li>
</ul>
<h3>Documented</h3>
<ul>
<li>Fix double spaces in comments and doc comments (<a
href="https://redirect.github.com/tokio-rs/bytes/issues/731">#731</a>)</li>
</ul>
<h3>Internal changes</h3>
<ul>
<li>Ensure BytesMut::advance reduces capacity (<a
href="https://redirect.github.com/tokio-rs/bytes/issues/728">#728</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/tokio-rs/bytes/commit/d7c1d658d90c922eeee1dbc29bc6f6fd9a1a1a66"><code>d7c1d65</code></a>
chore: prepare bytes v1.7.2 (<a
href="https://redirect.github.com/tokio-rs/bytes/issues/736">#736</a>)</li>
<li><a
href="https://github.com/tokio-rs/bytes/commit/ac46ebdd464144cecd7463a96ca9eb347458ae94"><code>ac46ebd</code></a>
ci: update nightly to nightly-2024-09-15 (<a
href="https://redirect.github.com/tokio-rs/bytes/issues/734">#734</a>)</li>
<li><a
href="https://github.com/tokio-rs/bytes/commit/79fb85323cf4cf14d9b85f487b65fc147030cf4b"><code>79fb853</code></a>
fix: apply sign extension when decoding int (<a
href="https://redirect.github.com/tokio-rs/bytes/issues/732">#732</a>)</li>
<li><a
href="https://github.com/tokio-rs/bytes/commit/291df5acc94b82a48765e67eeb1c1a2074539e68"><code>291df5a</code></a>
Fix double spaces in comments and doc comments (<a
href="https://redirect.github.com/tokio-rs/bytes/issues/731">#731</a>)</li>
<li><a
href="https://github.com/tokio-rs/bytes/commit/ed7d5ff39e39c2802c0fa9e2fc308f6a3e0beda7"><code>ed7d5ff</code></a>
test: ensure BytesMut::advance reduces capacity (<a
href="https://redirect.github.com/tokio-rs/bytes/issues/728">#728</a>)</li>
<li>See full diff in <a
href="https://github.com/tokio-rs/bytes/compare/v1.7.1...v1.7.2">compare
view</a></li>
</ul>
</details>
<br />

Updates `cc` from 1.1.14 to 1.1.22
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/rust-lang/cc-rs/releases">cc's
releases</a>.</em></p>
<blockquote>
<h2>cc-v1.1.22</h2>
<h3>Other</h3>
<ul>
<li>Don't rerun if PATH changes (<a
href="https://redirect.github.com/rust-lang/cc-rs/pull/1215">#1215</a>)</li>
</ul>
<h2>cc-v1.1.21</h2>
<h3>Other</h3>
<ul>
<li>disable pic for targets that end in <code>-none</code> (<a
href="https://redirect.github.com/rust-lang/cc-rs/pull/1212">#1212</a>)</li>
</ul>
<h2>cc-v1.1.20</h2>
<h3>Other</h3>
<ul>
<li>Add buildcache as known Rust and C/C++ compiler wrapper (<a
href="https://redirect.github.com/rust-lang/cc-rs/pull/1209">#1209</a>)</li>
</ul>
<h2>cc-v1.1.19</h2>
<h3>Other</h3>
<ul>
<li>Add support arm64e-apple-darwin (<a
href="https://redirect.github.com/rust-lang/cc-rs/pull/1207">#1207</a>)</li>
</ul>
<h2>cc-v1.1.18</h2>
<h3>Other</h3>
<ul>
<li>Fixed unsoundness in <code>StderrForwarder::forward_available</code>
(<a
href="https://redirect.github.com/rust-lang/cc-rs/pull/1203">#1203</a>)</li>
</ul>
<h2>cc-v1.1.17</h2>
<h3>Fixed</h3>
<ul>
<li>fix finding toolchains when invoked by msbuild (<a
href="https://redirect.github.com/rust-lang/cc-rs/pull/1201">#1201</a>)</li>
</ul>
<h2>cc-v1.1.16</h2>
<h3>Other</h3>
<ul>
<li>Treat VxWorks wr-cc as a Gnu compiler (<a
href="https://redirect.github.com/rust-lang/cc-rs/pull/1198">#1198</a>)</li>
</ul>
<h2>cc-v1.1.15</h2>
<h3>Other</h3>
<ul>
<li>Add -mfloat-abi=hard as a default argument when using any
arm/thumb-none-eabihf target (<a
href="https://redirect.github.com/rust-lang/cc-rs/pull/1194">#1194</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/rust-lang/cc-rs/blob/main/CHANGELOG.md">cc's
changelog</a>.</em></p>
<blockquote>
<h2><a
href="https://github.com/rust-lang/cc-rs/compare/cc-v1.1.21...cc-v1.1.22">1.1.22</a>
- 2024-09-27</h2>
<h3>Other</h3>
<ul>
<li>Don't rerun if PATH changes (<a
href="https://redirect.github.com/rust-lang/cc-rs/pull/1215">#1215</a>)</li>
</ul>
<h2><a
href="https://github.com/rust-lang/cc-rs/compare/cc-v1.1.20...cc-v1.1.21">1.1.21</a>
- 2024-09-18</h2>
<h3>Other</h3>
<ul>
<li>disable pic for targets that end in <code>-none</code> (<a
href="https://redirect.github.com/rust-lang/cc-rs/pull/1212">#1212</a>)</li>
</ul>
<h2><a
href="https://github.com/rust-lang/cc-rs/compare/cc-v1.1.19...cc-v1.1.20">1.1.20</a>
- 2024-09-17</h2>
<h3>Other</h3>
<ul>
<li>Add buildcache as known Rust and C/C++ compiler wrapper (<a
href="https://redirect.github.com/rust-lang/cc-rs/pull/1209">#1209</a>)</li>
</ul>
<h2><a
href="https://github.com/rust-lang/cc-rs/compare/cc-v1.1.18...cc-v1.1.19">1.1.19</a>
- 2024-09-15</h2>
<h3>Other</h3>
<ul>
<li>Add support arm64e-apple-darwin (<a
href="https://redirect.github.com/rust-lang/cc-rs/pull/1207">#1207</a>)</li>
</ul>
<h2><a
href="https://github.com/rust-lang/cc-rs/compare/cc-v1.1.17...cc-v1.1.18">1.1.18</a>
- 2024-09-07</h2>
<h3>Other</h3>
<ul>
<li>Fixed unsoundness in <code>StderrForwarder::forward_available</code>
(<a
href="https://redirect.github.com/rust-lang/cc-rs/pull/1203">#1203</a>)</li>
</ul>
<h2><a
href="https://github.com/rust-lang/cc-rs/compare/cc-v1.1.16...cc-v1.1.17">1.1.17</a>
- 2024-09-06</h2>
<h3>Fixed</h3>
<ul>
<li>fix finding toolchains when invoked by msbuild (<a
href="https://redirect.github.com/rust-lang/cc-rs/pull/1201">#1201</a>)</li>
</ul>
<h2><a
href="https://github.com/rust-lang/cc-rs/compare/cc-v1.1.15...cc-v1.1.16">1.1.16</a>
- 2024-09-04</h2>
<h3>Other</h3>
<ul>
<li>Treat VxWorks wr-cc as a Gnu compiler (<a
href="https://redirect.github.com/rust-lang/cc-rs/pull/1198">#1198</a>)</li>
</ul>
<h2><a
href="https://github.com/rust-lang/cc-rs/compare/cc-v1.1.14...cc-v1.1.15">1.1.15</a>
- 2024-08-26</h2>
<h3>Other</h3>
<ul>
<li>Add -mfloat-abi=hard as a default argument when using any
arm/thumb-none-eabihf target (<a
href="https://redirect.github.com/rust-lang/cc-rs/pull/1194">#1194</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/rust-lang/cc-rs/commit/5f5e1c8c18b53aa1524f720ce21b5a7986a0bf6b"><code>5f5e1c8</code></a>
chore: release (<a
href="https://redirect.github.com/rust-lang/cc-rs/issues/1216">#1216</a>)</li>
<li><a
href="https://github.com/rust-lang/cc-rs/commit/71c672b4afa2f9b6e5046a963d3b5bc1f9ccd2f8"><code>71c672b</code></a>
Don't rerun if PATH changes (<a
href="https://redirect.github.com/rust-lang/cc-rs/issues/1215">#1215</a>)</li>
<li><a
href="https://github.com/rust-lang/cc-rs/commit/748b777e553af972fb0484ece2626beaa354e0a2"><code>748b777</code></a>
chore: release (<a
href="https://redirect.github.com/rust-lang/cc-rs/issues/1213">#1213</a>)</li>
<li><a
href="https://github.com/rust-lang/cc-rs/commit/270ec653371a12498c3a338fb8b4a5d35e8388c6"><code>270ec65</code></a>
disable pic for targets that end in <code>-none</code> (<a
href="https://redirect.github.com/rust-lang/cc-rs/issues/1212">#1212</a>)</li>
<li><a
href="https://github.com/rust-lang/cc-rs/commit/92a5e28c084aefc101d2f71f236614d9fcaa1f9e"><code>92a5e28</code></a>
chore: release (<a
href="https://redirect.github.com/rust-lang/cc-rs/issues/1210">#1210</a>)</li>
<li><a
href="https://github.com/rust-lang/cc-rs/commit/dab5d7adb4c090ac9d8650e7d97897a711ac7a14"><code>dab5d7a</code></a>
Add buildcache as known Rust and C/C++ compiler wrapper (<a
href="https://redirect.github.com/rust-lang/cc-rs/issues/1209">#1209</a>)</li>
<li><a
href="https://github.com/rust-lang/cc-rs/commit/c0b3eae28300fc8b36eb3a0b519ef4083f1a129e"><code>c0b3eae</code></a>
chore: release (<a
href="https://redirect.github.com/rust-lang/cc-rs/issues/1208">#1208</a>)</li>
<li><a
href="https://github.com/rust-lang/cc-rs/commit/278a606afb79b00cfe7a1372dbaa3529ecce3dc4"><code>278a606</code></a>
Add support arm64e-apple-darwin (<a
href="https://redirect.github.com/rust-lang/cc-rs/issues/1207">#1207</a>)</li>
<li><a
href="https://github.com/rust-lang/cc-rs/commit/668facdbbcade9ebfb48c8ea0b658fc2688c4e5c"><code>668facd</code></a>
chore: release (<a
href="https://redirect.github.com/rust-lang/cc-rs/issues/1204">#1204</a>)</li>
<li><a
href="https://github.com/rust-lang/cc-rs/commit/5e161c6f4452fe63985bdfc78462ceda94c99805"><code>5e161c6</code></a>
Fixed unsoundness in <code>StderrForwarder::forward_available</code> (<a
href="https://redirect.github.com/rust-lang/cc-rs/issues/1203">#1203</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/rust-lang/cc-rs/compare/cc-v1.1.14...cc-v1.1.22">compare
view</a></li>
</ul>
</details>
<br />

Updates `clap_builder` from 4.5.15 to 4.5.18
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/clap-rs/clap/releases">clap_builder's
releases</a>.</em></p>
<blockquote>
<h2>v4.5.18</h2>
<h2>[4.5.18] - 2024-09-20</h2>
<h3>Features</h3>
<ul>
<li><em>(builder)</em> Expose <code>Arg::get_display_order</code> and
<code>Command::get_display_order</code></li>
</ul>
<h2>v4.5.17</h2>
<h2>[4.5.17] - 2024-09-04</h2>
<h3>Fixes</h3>
<ul>
<li><em>(help)</em> Style required argument groups</li>
<li><em>(derive)</em> Improve error messages when unsupported fields are
used</li>
</ul>
<h2>v4.5.16</h2>
<h2>[4.5.16] - 2024-08-15</h2>
<h3>Fixes</h3>
<ul>
<li><em>(derive)</em> Improve error messages when <code>derive</code>
feature is missing</li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/clap-rs/clap/blob/master/CHANGELOG.md">clap_builder's
changelog</a>.</em></p>
<blockquote>
<h2>[4.5.18] - 2024-09-20</h2>
<h3>Features</h3>
<ul>
<li><em>(builder)</em> Expose <code>Arg::get_display_order</code> and
<code>Command::get_display_order</code></li>
</ul>
<h2>[4.5.17] - 2024-09-04</h2>
<h3>Fixes</h3>
<ul>
<li><em>(help)</em> Style required argument groups</li>
<li><em>(derive)</em> Improve error messages when unsupported fields are
used</li>
</ul>
<h2>[4.5.16] - 2024-08-15</h2>
<h3>Fixes</h3>
<ul>
<li><em>(derive)</em> Improve error messages when <code>derive</code>
feature is missing</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/clap-rs/clap/commit/0d142f6c04a702b791d2dfec8327661ba1b6d16c"><code>0d142f6</code></a>
chore: Release</li>
<li><a
href="https://github.com/clap-rs/clap/commit/0facf1f370e7966a4d97bce56d1d10ca4c80d0ae"><code>0facf1f</code></a>
docs: Update changelog</li>
<li><a
href="https://github.com/clap-rs/clap/commit/ee6af99c6c5e239c0f2c92f9d1baf8aa3bb4af90"><code>ee6af99</code></a>
Merge pull request <a
href="https://redirect.github.com/clap-rs/clap/issues/5743">#5743</a>
from epage/sort</li>
<li><a
href="https://github.com/clap-rs/clap/commit/232ee106615e997f0841bb3de97eed126b929fe3"><code>232ee10</code></a>
fix(complete): Use existing display order for Arg/Command</li>
<li><a
href="https://github.com/clap-rs/clap/commit/c6b5d627a0c17527630e4086a4fe83589365d1f0"><code>c6b5d62</code></a>
feat(builder): Expose get_display_order</li>
<li><a
href="https://github.com/clap-rs/clap/commit/67d9fef9cee8f1b297aed73e6d95f78744b43a27"><code>67d9fef</code></a>
feat(complete): Give control over display order</li>
<li><a
href="https://github.com/clap-rs/clap/commit/59a61e188fbb9999db52f567e3951d3720204084"><code>59a61e1</code></a>
refactor(complete): Pull out common candidate code</li>
<li><a
href="https://github.com/clap-rs/clap/commit/144879194081212046d5566572bfa15ea9bcca35"><code>1448791</code></a>
fix(complete): Specify tags for built-in candiates</li>
<li><a
href="https://github.com/clap-rs/clap/commit/a4aa5dffdf46a2975f2b2d51ce7e618e19250ead"><code>a4aa5df</code></a>
feat(complete): Group by tag</li>
<li><a
href="https://github.com/clap-rs/clap/commit/a126149a809f01586ccb6d9299eb2fc2c87d8fe0"><code>a126149</code></a>
refactor(complete): Remove redundant dedup</li>
<li>Additional commits viewable in <a
href="https://github.com/clap-rs/clap/compare/v4.5.15...v4.5.18">compare
view</a></li>
</ul>
</details>
<br />

Updates `clap_derive` from 4.5.13 to 4.5.18
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/clap-rs/clap/releases">clap_derive's
releases</a>.</em></p>
<blockquote>
<h2>v4.5.18</h2>
<h2>[4.5.18] - 2024-09-20</h2>
<h3>Features</h3>
<ul>
<li><em>(builder)</em> Expose <code>Arg::get_display_order</code> and
<code>Command::get_display_order</code></li>
</ul>
<h2>v4.5.17</h2>
<h2>[4.5.17] - 2024-09-04</h2>
<h3>Fixes</h3>
<ul>
<li><em>(help)</em> Style required argument groups</li>
<li><em>(derive)</em> Improve error messages when unsupported fields are
used</li>
</ul>
<h2>v4.5.16</h2>
<h2>[4.5.16] - 2024-08-15</h2>
<h3>Fixes</h3>
<ul>
<li><em>(derive)</em> Improve error messages when <code>derive</code>
feature is missing</li>
</ul>
<h2>v4.5.15</h2>
<h2>[4.5.15] - 2024-08-10</h2>
<h3>Compatiblity</h3>
<ul>
<li><em>(unstable-ext)</em> <code>Arg::remove</code> changed return
types</li>
</ul>
<h3>Fixes</h3>
<ul>
<li><em>(unstable-ext)</em> Make <code>Arg::remove</code> return the
removed item</li>
</ul>
<h2>v4.5.14</h2>
<h2>[4.5.14] - 2024-08-08</h2>
<h3>Features</h3>
<ul>
<li><em>(unstable-ext)</em> Added <code>Arg::add</code> for attaching
arbitrary state, like completion hints, to <code>Arg</code> without
<code>Arg</code> knowing about it</li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/clap-rs/clap/blob/master/CHANGELOG.md">clap_derive's
changelog</a>.</em></p>
<blockquote>
<h2>[4.5.18] - 2024-09-20</h2>
<h3>Features</h3>
<ul>
<li><em>(builder)</em> Expose <code>Arg::get_display_order</code> and
<code>Command::get_display_order</code></li>
</ul>
<h2>[4.5.17] - 2024-09-04</h2>
<h3>Fixes</h3>
<ul>
<li><em>(help)</em> Style required argument groups</li>
<li><em>(derive)</em> Improve error messages when unsupported fields are
used</li>
</ul>
<h2>[4.5.16] - 2024-08-15</h2>
<h3>Fixes</h3>
<ul>
<li><em>(derive)</em> Improve error messages when <code>derive</code>
feature is missing</li>
</ul>
<h2>[4.5.15] - 2024-08-10</h2>
<h3>Compatiblity</h3>
<ul>
<li><em>(unstable-ext)</em> <code>Arg::remove</code> changed return
types</li>
</ul>
<h3>Fixes</h3>
<ul>
<li><em>(unstable-ext)</em> Make <code>Arg::remove</code> return the
removed item</li>
</ul>
<h2>[4.5.14] - 2024-08-08</h2>
<h3>Features</h3>
<ul>
<li><em>(unstable-ext)</em> Added <code>Arg::add</code> for attaching
arbitrary state, like completion hints, to <code>Arg</code> without
<code>Arg</code> knowing about it</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/clap-rs/clap/commit/0d142f6c04a702b791d2dfec8327661ba1b6d16c"><code>0d142f6</code></a>
chore: Release</li>
<li><a
href="https://github.com/clap-rs/clap/commit/0facf1f370e7966a4d97bce56d1d10ca4c80d0ae"><code>0facf1f</code></a>
docs: Update changelog</li>
<li><a
href="https://github.com/clap-rs/clap/commit/ee6af99c6c5e239c0f2c92f9d1baf8aa3bb4af90"><code>ee6af99</code></a>
Merge pull request <a
href="https://redirect.github.com/clap-rs/clap/issues/5743">#5743</a>
from epage/sort</li>
<li><a
href="https://github.com/clap-rs/clap/commit/232ee106615e997f0841bb3de97eed126b929fe3"><code>232ee10</code></a>
fix(complete): Use existing display order for Arg/Command</li>
<li><a
href="https://github.com/clap-rs/clap/commit/c6b5d627a0c17527630e4086a4fe83589365d1f0"><code>c6b5d62</code></a>
feat(builder): Expose get_display_order</li>
<li><a
href="https://github.com/clap-rs/clap/commit/67d9fef9cee8f1b297aed73e6d95f78744b43a27"><code>67d9fef</code></a>
feat(complete): Give control over display order</li>
<li><a
href="https://github.com/clap-rs/clap/commit/59a61e188fbb9999db52f567e3951d3720204084"><code>59a61e1</code></a>
refactor(complete): Pull out common candidate code</li>
<li><a
href="https://github.com/clap-rs/clap/commit/144879194081212046d5566572bfa15ea9bcca35"><code>1448791</code></a>
fix(complete): Specify tags for built-in candiates</li>
<li><a
href="https://github.com/clap-rs/clap/commit/a4aa5dffdf46a2975f2b2d51ce7e618e19250ead"><code>a4aa5df</code></a>
feat(complete): Group by tag</li>
<li><a
href="https://github.com/clap-rs/clap/commit/a126149a809f01586ccb6d9299eb2fc2c87d8fe0"><code>a126149</code></a>
refactor(complete): Remove redundant dedup</li>
<li>Additional commits viewable in <a
href="https://github.com/clap-rs/clap/compare/v4.5.13...v4.5.18">compare
view</a></li>
</ul>
</details>
<br />

Updates `const_format_proc_macros` from 0.2.32 to 0.2.33
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/rodrimati1992/const_format_crates/blob/master/Changelog.md">const_format_proc_macros's
changelog</a>.</em></p>
<blockquote>
<h3>0.2.33</h3>
<p>Fixed Rust Analyzer style warning for assertion macros.</p>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li>See full diff in <a
href="https://github.com/rodrimati1992/const_format_crates/commits">compare
view</a></li>
</ul>
</details>
<br />

Updates `cpufeatures` from 0.2.13 to 0.2.14
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/RustCrypto/utils/commit/6a87dce97c9f927bea999ab957ccb6bc60a6c36f"><code>6a87dce</code></a>
cpufeatures v0.2.14 (<a
href="https://redirect.github.com/RustCrypto/utils/issues/1104">#1104</a>)</li>
<li><a
href="https://github.com/RustCrypto/utils/commit/4be67893ccece4823b606c5e29eccd44f7e07450"><code>4be6789</code></a>
aarch64-dit: initial crate (<a
href="https://redirect.github.com/RustCrypto/utils/issues/1102">#1102</a>)</li>
<li><a
href="https://github.com/RustCrypto/utils/commit/141756093ae5ee316af9cd3b459d4c5225bc86dd"><code>1417560</code></a>
README.md(s): use img.shields.io crate version badges</li>
<li><a
href="https://github.com/RustCrypto/utils/commit/cfa21ea50a22df26a52e17649e203e0c2657154d"><code>cfa21ea</code></a>
cpufeatures: add DIT support for AArch64 Linux targets (<a
href="https://redirect.github.com/RustCrypto/utils/issues/1101">#1101</a>)</li>
<li><a
href="https://github.com/RustCrypto/utils/commit/1ad40787ec88039f829144ef59b7bc506eaf07ed"><code>1ad4078</code></a>
cpufeatures: add support for DIT detection on Apple silicon (<a
href="https://redirect.github.com/RustCrypto/utils/issues/1100">#1100</a>)</li>
<li><a
href="https://github.com/RustCrypto/utils/commit/5d46aba5ef3720e854f48d93243c247e4611b125"><code>5d46aba</code></a>
block-buffer: release v0.11.0-rc.1 (<a
href="https://redirect.github.com/RustCrypto/utils/issues/1098">#1098</a>)</li>
<li>See full diff in <a
href="https://github.com/RustCrypto/utils/compare/cpufeatures-v0.2.13...cpufeatures-v0.2.14">compare
view</a></li>
</ul>
</details>
<br />

Updates `fastrand` from 2.1.0 to 2.1.1
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/smol-rs/fastrand/releases">fastrand's
releases</a>.</em></p>
<blockquote>
<h2>v2.1.1</h2>
<ul>
<li>Remove support for 128-bit targets, as they are not supported by
rustc yet. (<a
href="https://redirect.github.com/smol-rs/fastrand/issues/87">#87</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/smol-rs/fastrand/blob/master/CHANGELOG.md">fastrand's
changelog</a>.</em></p>
<blockquote>
<h1>Version 2.1.1</h1>
<ul>
<li>Remove support for 128-bit targets, as they are not supported by
rustc yet. (<a
href="https://redirect.github.com/smol-rs/fastrand/issues/87">#87</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/smol-rs/fastrand/commit/9d1a66fe46cee30e6c716812a9df467c653fa290"><code>9d1a66f</code></a>
v2.1.1</li>
<li><a
href="https://github.com/smol-rs/fastrand/commit/d05504dee3e2ec359fca62db9353de2ad3dfff40"><code>d05504d</code></a>
bugfix: Remove 128-bit value generator</li>
<li><a
href="https://github.com/smol-rs/fastrand/commit/7e60c7f688f9be3dcd4f59f216c87dac88ca2902"><code>7e60c7f</code></a>
chore: Forgot to bump the version</li>
<li>See full diff in <a
href="https://github.com/smol-rs/fastrand/compare/v2.1.0...v2.1.1">compare
view</a></li>
</ul>
</details>
<br />

Updates `flate2` from 1.0.32 to 1.0.34
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/rust-lang/flate2-rs/releases">flate2's
releases</a>.</em></p>
<blockquote>
<h2>1.0.34</h2>
<h2>What's Changed</h2>
<ul>
<li>Add minimum build test back in to CI by <a
href="https://github.com/jongiddy"><code>@​jongiddy</code></a> in <a
href="https://redirect.github.com/rust-lang/flate2-rs/pull/426">rust-lang/flate2-rs#426</a></li>
<li>docs: fix compression level range from 0-9 to 0-10 by <a
href="https://github.com/ByteBaker"><code>@​ByteBaker</code></a> in <a
href="https://redirect.github.com/rust-lang/flate2-rs/pull/427">rust-lang/flate2-rs#427</a></li>
<li>Document backend differences in compression levels by <a
href="https://github.com/Shnatsel"><code>@​Shnatsel</code></a> in <a
href="https://redirect.github.com/rust-lang/flate2-rs/pull/430">rust-lang/flate2-rs#430</a></li>
<li>Upgrade zlib-rs to 0.3.0 to get multiple bugfixes by <a
href="https://github.com/Shnatsel"><code>@​Shnatsel</code></a> in <a
href="https://redirect.github.com/rust-lang/flate2-rs/pull/428">rust-lang/flate2-rs#428</a></li>
<li>Better wording in compression level docs by <a
href="https://github.com/Shnatsel"><code>@​Shnatsel</code></a> in <a
href="https://redirect.github.com/rust-lang/flate2-rs/pull/431">rust-lang/flate2-rs#431</a></li>
</ul>
<h2>New Contributors</h2>
<ul>
<li><a href="https://github.com/ByteBaker"><code>@​ByteBaker</code></a>
made their first contribution in <a
href="https://redirect.github.com/rust-lang/flate2-rs/pull/427">rust-lang/flate2-rs#427</a></li>
<li><a href="https://github.com/Shnatsel"><code>@​Shnatsel</code></a>
made their first contribution in <a
href="https://redirect.github.com/rust-lang/flate2-rs/pull/430">rust-lang/flate2-rs#430</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/rust-lang/flate2-rs/compare/1.0.33...1.0.34">https://github.com/rust-lang/flate2-rs/compare/1.0.33...1.0.34</a></p>
<h2>1.0.33 - fix minimal manifest versions</h2>
<h2>What's Changed</h2>
<ul>
<li>Fix msrv: Run msrv checks with minimal versions by <a
href="https://github.com/NobodyXu"><code>@​NobodyXu</code></a> in <a
href="https://redirect.github.com/rust-lang/flate2-rs/pull/425">rust-lang/flate2-rs#425</a></li>
</ul>
<h2>New Contributors</h2>
<ul>
<li><a href="https://github.com/NobodyXu"><code>@​NobodyXu</code></a>
made their first contribution in <a
href="https://redirect.github.com/rust-lang/flate2-rs/pull/425">rust-lang/flate2-rs#425</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/rust-lang/flate2-rs/compare/1.0.32...1.0.33">https://github.com/rust-lang/flate2-rs/compare/1.0.32...1.0.33</a></p>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/rust-lang/flate2-rs/commit/1a28821dc116dac14178858be056e4a58ef8f501"><code>1a28821</code></a>
Merge pull request <a
href="https://redirect.github.com/rust-lang/flate2-rs/issues/431">#431</a>
from Shnatsel/better-wording</li>
<li><a
href="https://github.com/rust-lang/flate2-rs/commit/2c29780e5093b10c21954384cd97243770376814"><code>2c29780</code></a>
Merge pull request <a
href="https://redirect.github.com/rust-lang/flate2-rs/issues/428">#428</a>
from Shnatsel/upgrade-zlib-rs</li>
<li><a
href="https://github.com/rust-lang/flate2-rs/commit/423981aede8670a51d2c3aa657ae528152c0f64e"><code>423981a</code></a>
Better wording in compression level docs</li>
<li><a
href="https://github.com/rust-lang/flate2-rs/commit/da5c8cfd917b0ec2aeacc2e514b27b6bd50726e4"><code>da5c8cf</code></a>
Bump version</li>
<li><a
href="https://github.com/rust-lang/flate2-rs/commit/eeee4c641187628ec8676ffb24300c5da6bfb066"><code>eeee4c6</code></a>
Merge pull request <a
href="https://redirect.github.com/rust-lang/flate2-rs/issues/430">#430</a>
from Shnatsel/detailed-level-docs</li>
<li><a
href="https://github.com/rust-lang/flate2-rs/commit/731df32113188f3372367402b9ea2bb049689203"><code>731df32</code></a>
Update Cargo.toml</li>
<li><a
href="https://github.com/rust-lang/flate2-rs/commit/8210288eaac3e3f0fc67f6a0738f4e6ea96f067d"><code>8210288</code></a>
Document backend differences</li>
<li><a
href="https://github.com/rust-lang/flate2-rs/commit/1f78c5c4138c580462ccaf11b35dc794ce0ede4f"><code>1f78c5c</code></a>
Upgrade zlib-rs to 0.3.0 to get multiple bugfixes:</li>
<li><a
href="https://github.com/rust-lang/flate2-rs/commit/6fbd6d21151d0948ed94be8ac99b412d30315109"><code>6fbd6d2</code></a>
Merge pull request <a
href="https://redirect.github.com/rust-lang/flate2-rs/issues/427">#427</a>
from ByteBaker/main</li>
<li><a
href="https://github.com/rust-lang/flate2-rs/commit/936aa35f453aa31bbf401abc4f6505d05fa9f3cd"><code>936aa35</code></a>
docs: correctly mention compression level</li>
<li>Additional commits viewable in <a
href="https://github.com/rust-lang/flate2-rs/compare/1.0.32...1.0.34">compare
view</a></li>
</ul>
</details>
<br />

Updates `gimli` from 0.29.0 to 0.31.0
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/gimli-rs/gimli/blob/master/CHANGELOG.md">gimli's
changelog</a>.</em></p>
<blockquote>
<h2>0.31.0</h2>
<p>Released 2024/07/16.</p>
<h3>Breaking changes</h3>
<ul>
<li>
<p>Deleted support for segment selectors.
<a
href="https://redirect.github.com/gimli-rs/gimli/pull/720">#720</a></p>
</li>
<li>
<p>Added <code>read::FileEntry::source</code> and deleted
<code>Copy</code> implementation.
<a
href="https://redirect.github.com/gimli-rs/gimli/pull/728">#728</a></p…
changhuapeng pushed a commit to changhuapeng/KernelSU that referenced this pull request Oct 6, 2024
…tiann#2098)

Bumps the crates group with 25 updates in the /userspace/ksud directory:

| Package | From | To |
| --- | --- | --- |
| [anyhow](https://github.com/dtolnay/anyhow) | `1.0.86` | `1.0.89` |
| [clap](https://github.com/clap-rs/clap) | `4.5.16` | `4.5.18` |
| [const_format](https://github.com/rodrimati1992/const_format_crates) |
`0.2.32` | `0.2.33` |
| [serde](https://github.com/serde-rs/serde) | `1.0.208` | `1.0.210` |
| [serde_json](https://github.com/serde-rs/json) | `1.0.125` | `1.0.128`
|
| [libc](https://github.com/rust-lang/libc) | `0.2.158` | `0.2.159` |
| [is_executable](https://github.com/fitzgen/is_executable) | `1.0.1` |
`1.0.3` |
| [derive-new](https://github.com/nrc/derive-new) | `0.6.0` | `0.7.0` |
| [async-trait](https://github.com/dtolnay/async-trait) | `0.1.81` |
`0.1.83` |
| [autocfg](https://github.com/cuviper/autocfg) | `1.3.0` | `1.4.0` |
| [backtrace](https://github.com/rust-lang/backtrace-rs) | `0.3.73` |
`0.3.74` |
| [bytes](https://github.com/tokio-rs/bytes) | `1.7.1` | `1.7.2` |
| [cc](https://github.com/rust-lang/cc-rs) | `1.1.14` | `1.1.22` |
| [cpufeatures](https://github.com/RustCrypto/utils) | `0.2.13` |
`0.2.14` |
| [fastrand](https://github.com/smol-rs/fastrand) | `2.1.0` | `2.1.1` |
| [flate2](https://github.com/rust-lang/flate2-rs) | `1.0.32` | `1.0.34`
|
| [iana-time-zone](https://github.com/strawlab/iana-time-zone) |
`0.1.60` | `0.1.61` |
| [indexmap](https://github.com/indexmap-rs/indexmap) | `2.4.0` |
`2.5.0` |
| [object](https://github.com/gimli-rs/object) | `0.36.3` | `0.36.4` |
| [syn](https://github.com/dtolnay/syn) | `2.0.75` | `2.0.77` |
| [thiserror](https://github.com/dtolnay/thiserror) | `1.0.63` |
`1.0.64` |
| [tokio](https://github.com/tokio-rs/tokio) | `1.39.3` | `1.40.0` |
| [unicode-ident](https://github.com/dtolnay/unicode-ident) | `1.0.12` |
`1.0.13` |
| [unicode-width](https://github.com/unicode-rs/unicode-width) |
`0.1.13` | `0.1.14` |
| [unicode-xid](https://github.com/unicode-rs/unicode-xid) | `0.2.5` |
`0.2.6` |


Updates `anyhow` from 1.0.86 to 1.0.89
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/dtolnay/anyhow/releases">anyhow's
releases</a>.</em></p>
<blockquote>
<h2>1.0.89</h2>
<ul>
<li>Make anyhow::Error's <code>UnwindSafe</code> and
<code>RefUnwindSafe</code> impl consistently available between versions
of Rust newer and older than 1.72 (<a
href="https://redirect.github.com/dtolnay/anyhow/issues/386">#386</a>)</li>
</ul>
<h2>1.0.88</h2>
<ul>
<li>Documentation improvements</li>
</ul>
<h2>1.0.87</h2>
<ul>
<li>Support more APIs, including <code>Error::new</code> and
<code>Error::chain</code>, in no-std mode on Rust 1.81+ (<a
href="https://redirect.github.com/dtolnay/anyhow/issues/383">#383</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/dtolnay/anyhow/commit/9d3fb6d0968bd9f95a0d8bbc5269eb2496880510"><code>9d3fb6d</code></a>
Release 1.0.89</li>
<li><a
href="https://github.com/dtolnay/anyhow/commit/830c399126c1db902681130f5c4273d93767b990"><code>830c399</code></a>
Merge pull request <a
href="https://redirect.github.com/dtolnay/anyhow/issues/386">#386</a>
from dtolnay/unwindsafe</li>
<li><a
href="https://github.com/dtolnay/anyhow/commit/8454be372f2a7832436d7021b8f2f0a96db558b3"><code>8454be3</code></a>
Ensure UnwindSafe even with &quot;backtrace&quot; feature enabled and
old Rust</li>
<li><a
href="https://github.com/dtolnay/anyhow/commit/a85e414bf555ed961f59c2c69410e7b5f706df65"><code>a85e414</code></a>
Add more autotraits tests</li>
<li><a
href="https://github.com/dtolnay/anyhow/commit/139f266b903ac2eab462292495f864740446dcdc"><code>139f266</code></a>
Release 1.0.88</li>
<li><a
href="https://github.com/dtolnay/anyhow/commit/aa3ab2b9f0a8cdf4b54dae58d39a2446c5eecbb2"><code>aa3ab2b</code></a>
Merge pull request <a
href="https://redirect.github.com/dtolnay/anyhow/issues/385">#385</a>
from dtolnay/docnostd</li>
<li><a
href="https://github.com/dtolnay/anyhow/commit/44c37674d35a0899fde03ae2fdaeee0bd4c38501"><code>44c3767</code></a>
Update documentation on no-std error type conversions</li>
<li><a
href="https://github.com/dtolnay/anyhow/commit/afe93e7b167d069ac79f2c7f363b919d3793e6ce"><code>afe93e7</code></a>
Release 1.0.87</li>
<li><a
href="https://github.com/dtolnay/anyhow/commit/d58fa4b282c1149bd121419dd359eb8caf2c113d"><code>d58fa4b</code></a>
Fix outdated html_root_url</li>
<li><a
href="https://github.com/dtolnay/anyhow/commit/c18d80743cead05bd75cf2e310e7a00c515facb9"><code>c18d807</code></a>
Disable unused doc_cfg feature</li>
<li>Additional commits viewable in <a
href="https://github.com/dtolnay/anyhow/compare/1.0.86...1.0.89">compare
view</a></li>
</ul>
</details>
<br />

Updates `clap` from 4.5.16 to 4.5.18
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/clap-rs/clap/releases">clap's
releases</a>.</em></p>
<blockquote>
<h2>v4.5.18</h2>
<h2>[4.5.18] - 2024-09-20</h2>
<h3>Features</h3>
<ul>
<li><em>(builder)</em> Expose <code>Arg::get_display_order</code> and
<code>Command::get_display_order</code></li>
</ul>
<h2>v4.5.17</h2>
<h2>[4.5.17] - 2024-09-04</h2>
<h3>Fixes</h3>
<ul>
<li><em>(help)</em> Style required argument groups</li>
<li><em>(derive)</em> Improve error messages when unsupported fields are
used</li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/clap-rs/clap/blob/master/CHANGELOG.md">clap's
changelog</a>.</em></p>
<blockquote>
<h2>[4.5.18] - 2024-09-20</h2>
<h3>Features</h3>
<ul>
<li><em>(builder)</em> Expose <code>Arg::get_display_order</code> and
<code>Command::get_display_order</code></li>
</ul>
<h2>[4.5.17] - 2024-09-04</h2>
<h3>Fixes</h3>
<ul>
<li><em>(help)</em> Style required argument groups</li>
<li><em>(derive)</em> Improve error messages when unsupported fields are
used</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/clap-rs/clap/commit/d81158599f5b3a2434845a1731377eae84780b9a"><code>d811585</code></a>
chore: Release</li>
<li><a
href="https://github.com/clap-rs/clap/commit/ab948b35561b5bc64b50d6a52d799aa5ac5de187"><code>ab948b3</code></a>
docs: Update changelog</li>
<li><a
href="https://github.com/clap-rs/clap/commit/82e599e91d64ddae7231c98a91b4cd39e8c9036d"><code>82e599e</code></a>
Merge pull request <a
href="https://redirect.github.com/clap-rs/clap/issues/5602">#5602</a>
from shannmu/delimiter_values</li>
<li><a
href="https://github.com/clap-rs/clap/commit/59bf26dd56032a7a4e6d923cd37de6e72c33078e"><code>59bf26d</code></a>
feat(clap_complete): Support delimiter values in native completions</li>
<li><a
href="https://github.com/clap-rs/clap/commit/ccecab394b45bc4dd251d00b7d69737ed93d18f8"><code>ccecab3</code></a>
test(clap_complete): Add test cases for delimiter_values support</li>
<li><a
href="https://github.com/clap-rs/clap/commit/a3a476407b01f083dc06200783ad745bc45e5da8"><code>a3a4764</code></a>
docs(derive): Specify Parser::update_from semantics</li>
<li><a
href="https://github.com/clap-rs/clap/commit/df165a2da431138bcc5cd891aec922cbdeda6ded"><code>df165a2</code></a>
docs(derive): Flatten isn't just for update</li>
<li><a
href="https://github.com/clap-rs/clap/commit/5488bcfa30255c59f931f1248e854c0087b2b969"><code>5488bcf</code></a>
docs(derive): Connect more dots for Args/Subcommand</li>
<li><a
href="https://github.com/clap-rs/clap/commit/6013ad4f676dd25c5b5150557a5fb5698c3de020"><code>6013ad4</code></a>
chore: Release</li>
<li><a
href="https://github.com/clap-rs/clap/commit/f98e3ee215015055d776f91217019c33da78c975"><code>f98e3ee</code></a>
docs: Update changelog</li>
<li>Additional commits viewable in <a
href="https://github.com/clap-rs/clap/compare/clap_complete-v4.5.16...clap_complete-v4.5.18">compare
view</a></li>
</ul>
</details>
<br />

Updates `const_format` from 0.2.32 to 0.2.33
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/rodrimati1992/const_format_crates/blob/master/Changelog.md">const_format's
changelog</a>.</em></p>
<blockquote>
<h3>0.2.33</h3>
<p>Fixed Rust Analyzer style warning for assertion macros.</p>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li>See full diff in <a
href="https://github.com/rodrimati1992/const_format_crates/commits">compare
view</a></li>
</ul>
</details>
<br />

Updates `serde` from 1.0.208 to 1.0.210
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/serde-rs/serde/releases">serde's
releases</a>.</em></p>
<blockquote>
<h2>v1.0.210</h2>
<ul>
<li>Support serializing and deserializing <code>IpAddr</code> and
<code>SocketAddr</code> in no-std mode on Rust 1.77+ (<a
href="https://redirect.github.com/serde-rs/serde/issues/2816">#2816</a>,
thanks <a
href="https://github.com/MathiasKoch"><code>@​MathiasKoch</code></a>)</li>
<li>Make <code>serde::ser::StdError</code> and
<code>serde::de::StdError</code> equivalent to
<code>core::error::Error</code> on Rust 1.81+ (<a
href="https://redirect.github.com/serde-rs/serde/issues/2818">#2818</a>)</li>
</ul>
<h2>v1.0.209</h2>
<ul>
<li>Fix deserialization of empty structs and empty tuples inside of
untagged enums (<a
href="https://redirect.github.com/serde-rs/serde/issues/2805">#2805</a>,
thanks <a
href="https://github.com/Mingun"><code>@​Mingun</code></a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/serde-rs/serde/commit/89c4b02bf32ceae5b17d89f93a452ccc195ca038"><code>89c4b02</code></a>
Release 1.0.210</li>
<li><a
href="https://github.com/serde-rs/serde/commit/eeb8e44cda15f929796cd72241b0311e0bd04e67"><code>eeb8e44</code></a>
Merge pull request <a
href="https://redirect.github.com/serde-rs/serde/issues/2818">#2818</a>
from dtolnay/coreerror</li>
<li><a
href="https://github.com/serde-rs/serde/commit/785c2d9605ee73cc172dfd421228c1dccca984c9"><code>785c2d9</code></a>
Stabilize no-std StdError trait</li>
<li><a
href="https://github.com/serde-rs/serde/commit/d549f048e10bcb5e677afaf7b99d0ed3604b113b"><code>d549f04</code></a>
Reformat parse_ip_impl definition and calls</li>
<li><a
href="https://github.com/serde-rs/serde/commit/4c0dd63011434905265e2710bb9186e09e4f8ec2"><code>4c0dd63</code></a>
Delete attr support from core::net deserialization macros</li>
<li><a
href="https://github.com/serde-rs/serde/commit/26fb1341651c4e0ae4d58c675db3ca2a0d6e12c2"><code>26fb134</code></a>
Relocate cfg attrs out of parse_ip_impl and parse_socket_impl</li>
<li><a
href="https://github.com/serde-rs/serde/commit/07e614b52b5ab3387d86d3198e5f52cd1f5ff3cb"><code>07e614b</code></a>
Merge pull request <a
href="https://redirect.github.com/serde-rs/serde/issues/2817">#2817</a>
from dtolnay/corenet</li>
<li><a
href="https://github.com/serde-rs/serde/commit/b1f899fbe81f070803d9f7ca6e5d1cc3f19c9ea2"><code>b1f899f</code></a>
Delete doc(cfg) attribute from impls that are supported in no-std</li>
<li><a
href="https://github.com/serde-rs/serde/commit/b4f860e62767828beb3ef91721b6c56a31f9baad"><code>b4f860e</code></a>
Merge pull request <a
href="https://redirect.github.com/serde-rs/serde/issues/2816">#2816</a>
from MathiasKoch/chore/core-net</li>
<li><a
href="https://github.com/serde-rs/serde/commit/d940fe1b4934f097b0333dcb87bec5ee308d39cd"><code>d940fe1</code></a>
Reuse existing Buf wrapper as replacement for std::io::Write</li>
<li>Additional commits viewable in <a
href="https://github.com/serde-rs/serde/compare/v1.0.208...v1.0.210">compare
view</a></li>
</ul>
</details>
<br />

Updates `serde_json` from 1.0.125 to 1.0.128
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/serde-rs/json/releases">serde_json's
releases</a>.</em></p>
<blockquote>
<h2>1.0.128</h2>
<ul>
<li>Support serializing maps containing 128-bit integer keys to
serde_json::Value (<a
href="https://redirect.github.com/serde-rs/json/issues/1188">#1188</a>,
thanks <a
href="https://github.com/Mrreadiness"><code>@​Mrreadiness</code></a>)</li>
</ul>
<h2>1.0.127</h2>
<ul>
<li>Add more removal methods to OccupiedEntry (<a
href="https://redirect.github.com/serde-rs/json/issues/1179">#1179</a>,
thanks <a
href="https://github.com/GREsau"><code>@​GREsau</code></a>)</li>
</ul>
<h2>1.0.126</h2>
<ul>
<li>Improve string parsing on targets that use 32-bit pointers but also
have fast 64-bit integer arithmetic, such as
aarch64-unknown-linux-gnu_ilp32 and x86_64-unknown-linux-gnux32 (<a
href="https://redirect.github.com/serde-rs/json/issues/1182">#1182</a>,
thanks <a href="https://github.com/CryZe"><code>@​CryZe</code></a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/serde-rs/json/commit/d96b1d9b643b49a0bb92a8cf280daf6aa08f37cc"><code>d96b1d9</code></a>
Release 1.0.128</li>
<li><a
href="https://github.com/serde-rs/json/commit/599228d5dc52a0f1595fe4bd901821f70d0317a5"><code>599228d</code></a>
Merge pull request <a
href="https://redirect.github.com/serde-rs/json/issues/1188">#1188</a>
from Mrreadiness/feat/add-hashmap-key-128-serializer</li>
<li><a
href="https://github.com/serde-rs/json/commit/5416cee6c5ad355907f6e9d5f6039b994c69f768"><code>5416cee</code></a>
feat: add support for 128 bit HashMap key serialization</li>
<li><a
href="https://github.com/serde-rs/json/commit/27a4ca9d7a62394fe8f0103f3d91de59f055a4c4"><code>27a4ca9</code></a>
Upload CI Cargo.lock for reproducing failures</li>
<li><a
href="https://github.com/serde-rs/json/commit/5ebf65cc480f90714c94f82099ca9161d80cbb10"><code>5ebf65c</code></a>
Release 1.0.127</li>
<li><a
href="https://github.com/serde-rs/json/commit/f287a3b1a93ecb1a11cee31cb638bd9523a58add"><code>f287a3b</code></a>
Merge pull request 1179 from GREsau/patch-1</li>
<li><a
href="https://github.com/serde-rs/json/commit/ec980b02774abbff12fd3e26b0a1582eb14dcef7"><code>ec980b0</code></a>
Release 1.0.126</li>
<li><a
href="https://github.com/serde-rs/json/commit/e6282b0c479947805a33c7f167b1d19dd4c7ad4f"><code>e6282b0</code></a>
Merge pull request <a
href="https://redirect.github.com/serde-rs/json/issues/1184">#1184</a>
from serde-rs/fastarithmetic</li>
<li><a
href="https://github.com/serde-rs/json/commit/ffc4a43453029cdc5603cfe3ef08414488fd45de"><code>ffc4a43</code></a>
Improve cfg names for fast arithmetic</li>
<li><a
href="https://github.com/serde-rs/json/commit/4b1048d0ecc4d326d6657531689513f182a4f850"><code>4b1048d</code></a>
Merge pull request <a
href="https://redirect.github.com/serde-rs/json/issues/1183">#1183</a>
from serde-rs/arithmetic</li>
<li>Additional commits viewable in <a
href="https://github.com/serde-rs/json/compare/1.0.125...1.0.128">compare
view</a></li>
</ul>
</details>
<br />

Updates `libc` from 0.2.158 to 0.2.159
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/rust-lang/libc/releases">libc's
releases</a>.</em></p>
<blockquote>
<h2>0.2.159</h2>
<h3>Added</h3>
<ul>
<li>Android: add more <code>AT_*</code> constants in <a
href="https://redirect.github.com/rust-lang/libc/pull/3779">rust-lang/libc#3779</a></li>
<li>Apple: add missing <code>NOTE_*</code> constants in <a
href="https://redirect.github.com/rust-lang/libc/pull/3883">rust-lang/libc#3883</a></li>
<li>Hermit: add missing error numbers in <a
href="https://redirect.github.com/rust-lang/libc/pull/3858">rust-lang/libc#3858</a></li>
<li>Hurd: add <code>__timeval</code> for 64-bit support in <a
href="https://redirect.github.com/rust-lang/libc/pull/3786">rust-lang/libc#3786</a></li>
<li>Linux: add <code>epoll_pwait2</code> in <a
href="https://redirect.github.com/rust-lang/libc/pull/3868">rust-lang/libc#3868</a></li>
<li>Linux: add <code>mq_notify</code> in <a
href="https://redirect.github.com/rust-lang/libc/pull/3849">rust-lang/libc#3849</a></li>
<li>Linux: add missing <code>NFT_CT_*</code> constants in <a
href="https://redirect.github.com/rust-lang/libc/pull/3844">rust-lang/libc#3844</a></li>
<li>Linux: add the <code>fchmodat2</code> syscall in <a
href="https://redirect.github.com/rust-lang/libc/pull/3588">rust-lang/libc#3588</a></li>
<li>Linux: add the <code>mseal</code> syscall in <a
href="https://redirect.github.com/rust-lang/libc/pull/3798">rust-lang/libc#3798</a></li>
<li>OpenBSD: add <code>sendmmsg</code> and <code>recvmmsg</code> in <a
href="https://redirect.github.com/rust-lang/libc/pull/3831">rust-lang/libc#3831</a></li>
<li>Unix: add <code>IN6ADDR_ANY_INIT</code> and
<code>IN6ADDR_LOOPBACK_INIT</code> in <a
href="https://redirect.github.com/rust-lang/libc/pull/3693">rust-lang/libc#3693</a></li>
<li>VxWorks: add <code>S_ISVTX</code> in <a
href="https://redirect.github.com/rust-lang/libc/pull/3768">rust-lang/libc#3768</a></li>
<li>VxWorks: add <code>vxCpuLib</code> and <code>taskLib</code>
functions <a
href="https://redirect.github.com/rust-lang/libc/pull/3861">rust-lang/libc#3861</a></li>
<li>WASIp2: add definitions for <code>std::net</code> support in <a
href="https://redirect.github.com/rust-lang/libc/pull/3892">rust-lang/libc#3892</a></li>
</ul>
<h3>Fixed</h3>
<ul>
<li>Correctly handle version checks when <code>clippy-driver</code> is
used <a
href="https://redirect.github.com/rust-lang/libc/pull/3893">rust-lang/libc#3893</a></li>
</ul>
<h3>Changed</h3>
<ul>
<li>EspIdf: change signal constants to c_int in <a
href="https://redirect.github.com/rust-lang/libc/pull/3895">rust-lang/libc#3895</a></li>
<li>HorizonOS: update network definitions in <a
href="https://redirect.github.com/rust-lang/libc/pull/3863">rust-lang/libc#3863</a></li>
<li>Linux: combine <code>ioctl</code> APIs in <a
href="https://redirect.github.com/rust-lang/libc/pull/3722">rust-lang/libc#3722</a></li>
<li>WASI: enable CI testing in <a
href="https://redirect.github.com/rust-lang/libc/pull/3869">rust-lang/libc#3869</a></li>
<li>WASIp2: enable CI testing in <a
href="https://redirect.github.com/rust-lang/libc/pull/3870">rust-lang/libc#3870</a></li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/rust-lang/libc/blob/0.2.159/CHANGELOG.md">libc's
changelog</a>.</em></p>
<blockquote>
<h2><a
href="https://github.com/rust-lang/libc/compare/0.2.158...0.2.159">0.2.159</a>
- 2024-09-24</h2>
<h3>Added</h3>
<ul>
<li>Android: add more <code>AT_*</code> constants in <a
href="https://redirect.github.com/rust-lang/libc/pull/3779">rust-lang/libc#3779</a></li>
<li>Apple: add missing <code>NOTE_*</code> constants in <a
href="https://redirect.github.com/rust-lang/libc/pull/3883">rust-lang/libc#3883</a></li>
<li>Hermit: add missing error numbers in <a
href="https://redirect.github.com/rust-lang/libc/pull/3858">rust-lang/libc#3858</a></li>
<li>Hurd: add <code>__timeval</code> for 64-bit support in <a
href="https://redirect.github.com/rust-lang/libc/pull/3786">rust-lang/libc#3786</a></li>
<li>Linux: add <code>epoll_pwait2</code> in <a
href="https://redirect.github.com/rust-lang/libc/pull/3868">rust-lang/libc#3868</a></li>
<li>Linux: add <code>mq_notify</code> in <a
href="https://redirect.github.com/rust-lang/libc/pull/3849">rust-lang/libc#3849</a></li>
<li>Linux: add missing <code>NFT_CT_*</code> constants in <a
href="https://redirect.github.com/rust-lang/libc/pull/3844">rust-lang/libc#3844</a></li>
<li>Linux: add the <code>fchmodat2</code> syscall in <a
href="https://redirect.github.com/rust-lang/libc/pull/3588">rust-lang/libc#3588</a></li>
<li>Linux: add the <code>mseal</code> syscall in <a
href="https://redirect.github.com/rust-lang/libc/pull/3798">rust-lang/libc#3798</a></li>
<li>OpenBSD: add <code>sendmmsg</code> and <code>recvmmsg</code> in <a
href="https://redirect.github.com/rust-lang/libc/pull/3831">rust-lang/libc#3831</a></li>
<li>Unix: add <code>IN6ADDR_ANY_INIT</code> and
<code>IN6ADDR_LOOPBACK_INIT</code> in <a
href="https://redirect.github.com/rust-lang/libc/pull/3693">rust-lang/libc#3693</a></li>
<li>VxWorks: add <code>S_ISVTX</code> in <a
href="https://redirect.github.com/rust-lang/libc/pull/3768">rust-lang/libc#3768</a></li>
<li>VxWorks: add <code>vxCpuLib</code> and <code>taskLib</code>
functions <a
href="https://redirect.github.com/rust-lang/libc/pull/3861">rust-lang/libc#3861</a></li>
<li>WASIp2: add definitions for <code>std::net</code> support in <a
href="https://redirect.github.com/rust-lang/libc/pull/3892">rust-lang/libc#3892</a></li>
</ul>
<h3>Fixed</h3>
<ul>
<li>Correctly handle version checks when <code>clippy-driver</code> is
used <a
href="https://redirect.github.com/rust-lang/libc/pull/3893">rust-lang/libc#3893</a></li>
</ul>
<h3>Changed</h3>
<ul>
<li>EspIdf: change signal constants to c_int in <a
href="https://redirect.github.com/rust-lang/libc/pull/3895">rust-lang/libc#3895</a></li>
<li>HorizonOS: update network definitions in <a
href="https://redirect.github.com/rust-lang/libc/pull/3863">rust-lang/libc#3863</a></li>
<li>Linux: combine <code>ioctl</code> APIs in <a
href="https://redirect.github.com/rust-lang/libc/pull/3722">rust-lang/libc#3722</a></li>
<li>WASI: enable CI testing in <a
href="https://redirect.github.com/rust-lang/libc/pull/3869">rust-lang/libc#3869</a></li>
<li>WASIp2: enable CI testing in <a
href="https://redirect.github.com/rust-lang/libc/pull/3870">rust-lang/libc#3870</a></li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/rust-lang/libc/commit/7373a1abe57da20efae9fd2ca891d7b905c19e03"><code>7373a1a</code></a>
chore: release (<a
href="https://redirect.github.com/rust-lang/libc/issues/3862">#3862</a>)</li>
<li><a
href="https://github.com/rust-lang/libc/commit/48668be46be0dbc2d3dfcf942778c37a07d38a87"><code>48668be</code></a>
Merge pull request <a
href="https://redirect.github.com/rust-lang/libc/issues/3931">#3931</a>
from tgross35/backport-remove-tmp-file</li>
<li><a
href="https://github.com/rust-lang/libc/commit/28bb64b1fe678ca090f9af08d786949d53285940"><code>28bb64b</code></a>
Remove temporary file that was added by accident</li>
<li><a
href="https://github.com/rust-lang/libc/commit/a515d07dd95093bc1c3a7b716f0936d2d0b989db"><code>a515d07</code></a>
Merge pull request <a
href="https://redirect.github.com/rust-lang/libc/issues/3904">#3904</a>
from tgross35/backport-buildrs-fix</li>
<li><a
href="https://github.com/rust-lang/libc/commit/abcb8f87986c8f57a28c4f67d7939272f4f8cbad"><code>abcb8f8</code></a>
Simplify the RUSTC_WRAPPER check</li>
<li><a
href="https://github.com/rust-lang/libc/commit/507833559bd0bfe04b5139c1607c3dc3208174f5"><code>5078335</code></a>
Fix rustc version when <code>clippy-driver</code> is used</li>
<li><a
href="https://github.com/rust-lang/libc/commit/57a7d465fa69c85bb96c98c84762ada90ad02077"><code>57a7d46</code></a>
Merge pull request <a
href="https://redirect.github.com/rust-lang/libc/issues/3902">#3902</a>
from tgross35/backport-horizon-network</li>
<li><a
href="https://github.com/rust-lang/libc/commit/a3e88691a9a1a41867b0692b67cc50f5b1d39eb2"><code>a3e8869</code></a>
Revise network definitions for HorizonOS</li>
<li><a
href="https://github.com/rust-lang/libc/commit/fdd3a268960639b4714c2829976b87b374fa0f9f"><code>fdd3a26</code></a>
Merge pull request <a
href="https://redirect.github.com/rust-lang/libc/issues/3900">#3900</a>
from tgross35/espid-cherry-pick</li>
<li><a
href="https://github.com/rust-lang/libc/commit/35060e8eb0bd7a64722fc7ff8ef475f6b15384a9"><code>35060e8</code></a>
Merge pull request <a
href="https://redirect.github.com/rust-lang/libc/issues/3901">#3901</a>
from tgross35/backport-epoll_pwait2</li>
<li>Additional commits viewable in <a
href="https://github.com/rust-lang/libc/compare/0.2.158...0.2.159">compare
view</a></li>
</ul>
</details>
<br />

Updates `is_executable` from 1.0.1 to 1.0.3
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/fitzgen/is_executable/commit/cfe991224073cdab13ff6a8133d1cacd8182e21a"><code>cfe9912</code></a>
Bump to version 1.0.3</li>
<li><a
href="https://github.com/fitzgen/is_executable/commit/d6fcf2f526963b4e12ab063fca255bbe75bca178"><code>d6fcf2f</code></a>
Remove old test about README.md being in sync with module docs</li>
<li><a
href="https://github.com/fitzgen/is_executable/commit/95f27a6d3dae185ee1332728e959e4ff7c6890d9"><code>95f27a6</code></a>
Remove old CI</li>
<li><a
href="https://github.com/fitzgen/is_executable/commit/e70c103b81b5e5e7f25d7973605181cc622f2578"><code>e70c103</code></a>
Update badges in README</li>
<li><a
href="https://github.com/fitzgen/is_executable/commit/61d2e9ba8cf05a1410ca69fd157ca234c65a8af7"><code>61d2e9b</code></a>
Add github actions</li>
<li><a
href="https://github.com/fitzgen/is_executable/commit/001b334761623dcc0182dded9f1e3b949f7cf79a"><code>001b334</code></a>
Bump to version 1.0.2</li>
<li><a
href="https://github.com/fitzgen/is_executable/commit/fab168c19690b6247f9e983fd0e0d0d8599c3bef"><code>fab168c</code></a>
Merge pull request <a
href="https://redirect.github.com/fitzgen/is_executable/issues/14">#14</a>
from lucieleblanc/master</li>
<li><a
href="https://github.com/fitzgen/is_executable/commit/82f9c68782656eb9ec2fcad978fce3c9e60a3072"><code>82f9c68</code></a>
replace is_file() --&gt; exists() because symlinks are ok</li>
<li><a
href="https://github.com/fitzgen/is_executable/commit/441c1c7df30116f3a4a1b8a999e457816d77cf7a"><code>441c1c7</code></a>
add file existence check before reading extension</li>
<li><a
href="https://github.com/fitzgen/is_executable/commit/ea10f6b2f8456bdcc5300027c5605ff6089b371c"><code>ea10f6b</code></a>
Merge pull request <a
href="https://redirect.github.com/fitzgen/is_executable/issues/11">#11</a>
from davide125/exclude</li>
<li>Additional commits viewable in <a
href="https://github.com/fitzgen/is_executable/compare/v1.0.1...v1.0.3">compare
view</a></li>
</ul>
</details>
<br />

Updates `derive-new` from 0.6.0 to 0.7.0
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/nrc/derive-new/commit/6626d8f566ee523ead38fe789b171f1b46993e49"><code>6626d8f</code></a>
Update compiletest</li>
<li><a
href="https://github.com/nrc/derive-new/commit/1e024ddf396e06690c0b39baa5a4f996ae88404b"><code>1e024dd</code></a>
cargo update, etc.</li>
<li><a
href="https://github.com/nrc/derive-new/commit/3389ef278665f8e0be249b6f4bd3cbfc727160a8"><code>3389ef2</code></a>
Fix doc tests</li>
<li><a
href="https://github.com/nrc/derive-new/commit/bd4486d85de87d5a543a7604f4e8f136c8b0e973"><code>bd4486d</code></a>
implement <code>into</code> and <code>into_iter</code></li>
<li><a
href="https://github.com/nrc/derive-new/commit/a9230ace30ffc43836e0e49e42e1203c7f079732"><code>a9230ac</code></a>
fix tests</li>
<li><a
href="https://github.com/nrc/derive-new/commit/77cb8287d22ca3aff803577a49321886895a43ee"><code>77cb828</code></a>
Merge pull request <a
href="https://redirect.github.com/nrc/derive-new/issues/67">#67</a> from
Paragit-Solutions/implement-new-method-visibility</li>
<li><a
href="https://github.com/nrc/derive-new/commit/cacbadabd235a83e978fcd52d9ed83dffff43abd"><code>cacbada</code></a>
Merge pull request <a
href="https://redirect.github.com/nrc/derive-new/issues/66">#66</a> from
shellixyz/patch-1</li>
<li><a
href="https://github.com/nrc/derive-new/commit/d11f63160c0829dbf06a1aab30f431c9b58ecc37"><code>d11f631</code></a>
Add documentation</li>
<li><a
href="https://github.com/nrc/derive-new/commit/3311408f8fc4844e857708bf2a222c939ac1066d"><code>3311408</code></a>
Add visibility to test struct to test compilation and correct macro
expansion</li>
<li><a
href="https://github.com/nrc/derive-new/commit/61853b79702bae6d0ffa343718310f20463687a4"><code>61853b7</code></a>
Make the default visibility public</li>
<li>Additional commits viewable in <a
href="https://github.com/nrc/derive-new/compare/0.6.0...0.7">compare
view</a></li>
</ul>
</details>
<br />

Updates `async-trait` from 0.1.81 to 0.1.83
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/dtolnay/async-trait/releases">async-trait's
releases</a>.</em></p>
<blockquote>
<h2>0.1.83</h2>
<ul>
<li>Prevent needless_arbitrary_self_type lint being produced in
generated code (<a
href="https://redirect.github.com/dtolnay/async-trait/issues/278">#278</a>)</li>
</ul>
<h2>0.1.82</h2>
<ul>
<li>Prevent elided_named_lifetimes lint being produced in generated code
(<a
href="https://redirect.github.com/dtolnay/async-trait/issues/276">#276</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/dtolnay/async-trait/commit/e6b4d471c64156338fb87386b7a7ad8543c3a205"><code>e6b4d47</code></a>
Release 0.1.83</li>
<li><a
href="https://github.com/dtolnay/async-trait/commit/bfe8d617660237b27eee620181586a16ff2f6a25"><code>bfe8d61</code></a>
Merge pull request <a
href="https://redirect.github.com/dtolnay/async-trait/issues/278">#278</a>
from dtolnay/arbself</li>
<li><a
href="https://github.com/dtolnay/async-trait/commit/7bd974b3a4db2c3ab321de2976d09d3ea2b82348"><code>7bd974b</code></a>
Ignore needless_arbitrary_self_type clippy lint in generated code</li>
<li><a
href="https://github.com/dtolnay/async-trait/commit/b53b4e755402ef91d2104d40b8f303ad0c56d2f9"><code>b53b4e7</code></a>
Add regression test for issue 277</li>
<li><a
href="https://github.com/dtolnay/async-trait/commit/f8e5bb43181450a17068f160e8a51d410ede1705"><code>f8e5bb4</code></a>
Release 0.1.82</li>
<li><a
href="https://github.com/dtolnay/async-trait/commit/8fbf118de30d3d30416d5a2dff496513433171c4"><code>8fbf118</code></a>
Merge pull request <a
href="https://redirect.github.com/dtolnay/async-trait/issues/276">#276</a>
from dtolnay/elidednamed</li>
<li><a
href="https://github.com/dtolnay/async-trait/commit/6fa246a0546fc678c4812ccb59306b6b264c27a0"><code>6fa246a</code></a>
Ignore nightly's new elided_named_lifetimes lint in generated code</li>
<li><a
href="https://github.com/dtolnay/async-trait/commit/d542a0dd74f366995e5924edc2d6ac7661e5d9ca"><code>d542a0d</code></a>
Upload CI Cargo.lock for reproducing failures</li>
<li><a
href="https://github.com/dtolnay/async-trait/commit/8828c35a86442dd05b6ac3aab5f0bac769e246f0"><code>8828c35</code></a>
Sort dependency features in Cargo.toml</li>
<li><a
href="https://github.com/dtolnay/async-trait/commit/ba9793af3f3936e2373ab4c482bf49ac67009df8"><code>ba9793a</code></a>
Update ui test suite to nightly-2024-08-11</li>
<li>Additional commits viewable in <a
href="https://github.com/dtolnay/async-trait/compare/0.1.81...0.1.83">compare
view</a></li>
</ul>
</details>
<br />

Updates `autocfg` from 1.3.0 to 1.4.0
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/cuviper/autocfg/commit/d07df6624a4573803a29397c0ccf636aa0b3d153"><code>d07df66</code></a>
Merge pull request <a
href="https://redirect.github.com/cuviper/autocfg/issues/73">#73</a>
from cuviper/release-1.4.0</li>
<li><a
href="https://github.com/cuviper/autocfg/commit/f6066f016441c2a25e0fa0d9d0521b1a79b0e14c"><code>f6066f0</code></a>
Release 1.4.0</li>
<li><a
href="https://github.com/cuviper/autocfg/commit/8af60eca650aed24db3042dbd0a2e1f61016b95e"><code>8af60ec</code></a>
Merge pull request <a
href="https://redirect.github.com/cuviper/autocfg/issues/70">#70</a>
from Techcable/feature/rustc-check-cfg</li>
<li><a
href="https://github.com/cuviper/autocfg/commit/52a995b6723ae015fbed7312d56803492f01e10a"><code>52a995b</code></a>
Apply suggestions from code review</li>
<li><a
href="https://github.com/cuviper/autocfg/commit/a8703c163f5aa66819f515356530420955374386"><code>a8703c1</code></a>
Attempt rust 1.0 compat for ci/verify-check-cfg</li>
<li><a
href="https://github.com/cuviper/autocfg/commit/ac78be804dbcf9e616d69a93c0ba918adc6a003a"><code>ac78be8</code></a>
Add ci test crate for check-cfg</li>
<li><a
href="https://github.com/cuviper/autocfg/commit/0b4a7617ad0e6ccf271dac7ab920a731195fab32"><code>0b4a761</code></a>
Have emit_has methods delegate wherever possible</li>
<li><a
href="https://github.com/cuviper/autocfg/commit/546f7c6c1c0e25b2dca136675934348118f603d2"><code>546f7c6</code></a>
Fix minor doc issues</li>
<li><a
href="https://github.com/cuviper/autocfg/commit/e0e0f18f54fb60f9c42a01c6571edcdab4542db6"><code>e0e0f18</code></a>
Automatically emit <code>rustc-check-cfg</code> directives for
AutoCfg</li>
<li><a
href="https://github.com/cuviper/autocfg/commit/1953a17319e667dd2ead9a4eae0645ed939eef24"><code>1953a17</code></a>
Merge pull request <a
href="https://redirect.github.com/cuviper/autocfg/issues/72">#72</a>
from cuviper/pretty-way</li>
<li>Additional commits viewable in <a
href="https://github.com/cuviper/autocfg/compare/1.3.0...1.4.0">compare
view</a></li>
</ul>
</details>
<br />

Updates `backtrace` from 0.3.73 to 0.3.74
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/rust-lang/backtrace-rs/releases">backtrace's
releases</a>.</em></p>
<blockquote>
<h2>0.3.74</h2>
<h2>What's Changed</h2>
<ul>
<li>QNX Neutrino 7.0 support, thanks to <a
href="https://github.com/nyurik"><code>@​nyurik</code></a> in <a
href="https://redirect.github.com/rust-lang/backtrace-rs/pull/648">rust-lang/backtrace-rs#648</a></li>
<li>Cleaned up our Android support. This should massively improve
backtraces for ones with the API level sufficient to ship with
libunwind, etc. Unfortunately, it comes at the cost of dropping support
for older ones! Thanks to <a
href="https://github.com/fengys"><code>@​fengys</code></a> in <a
href="https://redirect.github.com/rust-lang/backtrace-rs/pull/656">rust-lang/backtrace-rs#656</a></li>
<li>Made PrintFmt, which was using the
<code>Enum::__NonExhaustiveVariant</code> pattern, use
<code>#[non_exhaustive]</code> for real. Don't @ me if you were matching
on that! Thanks to <a
href="https://github.com/nyurik"><code>@​nyurik</code></a> in <a
href="https://redirect.github.com/rust-lang/backtrace-rs/pull/651">rust-lang/backtrace-rs#651</a></li>
<li>Massively cleaned up the windows code! We moved from winapi to
windows-sys with windows-targets thanks to <a
href="https://github.com/CraftSpider"><code>@​CraftSpider</code></a> and
<a href="https://github.com/ChrisDenton"><code>@​ChrisDenton</code></a>
in
<ul>
<li>Don't cast HANDLE to usize and back by <a
href="https://github.com/CraftSpider"><code>@​CraftSpider</code></a> in
<a
href="https://redirect.github.com/rust-lang/backtrace-rs/pull/635">rust-lang/backtrace-rs#635</a></li>
<li>Switch from <code>winapi</code> to <code>windows-sys</code> by <a
href="https://github.com/CraftSpider"><code>@​CraftSpider</code></a> in
<a
href="https://redirect.github.com/rust-lang/backtrace-rs/pull/641">rust-lang/backtrace-rs#641</a></li>
<li>Update windows bindings and use windows-targets by <a
href="https://github.com/ChrisDenton"><code>@​ChrisDenton</code></a> in
<a
href="https://redirect.github.com/rust-lang/backtrace-rs/pull/653">rust-lang/backtrace-rs#653</a></li>
</ul>
</li>
<li>A bunch of updated dependencies. Thanks <a
href="https://github.com/djc"><code>@​djc</code></a> and <a
href="https://github.com/khuey"><code>@​khuey</code></a>!</li>
<li>Sorry if you were testing this code in miri! It started yelling
about sussy casts. A lot. We did a bunch of internal cleanups that
should make it quiet down, thanks to <a
href="https://github.com/workingjubilee"><code>@​workingjubilee</code></a>
in <a
href="https://redirect.github.com/rust-lang/backtrace-rs/pull/641">rust-lang/backtrace-rs#641</a></li>
<li>Uhhh we had to tweak <code>dl_iterate_phdr</code> in <a
href="https://redirect.github.com/rust-lang/backtrace-rs/pull/660">rust-lang/backtrace-rs#660</a>
after Android revealed it was... kind of unsound actually and not doing
things like checking for null pointers before making slices! WHOOPS!
Thanks to <a
href="https://github.com/saethlin"><code>@​saethlin</code></a> for
implementing detection for precisely that in rustc! It's really hard to
find soundness issues in inherited codebases like this one...</li>
</ul>
<h2>New Contributors</h2>
<ul>
<li><a
href="https://github.com/CraftSpider"><code>@​CraftSpider</code></a>
made their first contribution in <a
href="https://redirect.github.com/rust-lang/backtrace-rs/pull/635">rust-lang/backtrace-rs#635</a></li>
<li><a
href="https://github.com/fengys1996"><code>@​fengys1996</code></a> made
their first contribution in <a
href="https://redirect.github.com/rust-lang/backtrace-rs/pull/656">rust-lang/backtrace-rs#656</a></li>
<li><a href="https://github.com/djc"><code>@​djc</code></a> made their
first contribution in <a
href="https://redirect.github.com/rust-lang/backtrace-rs/pull/657">rust-lang/backtrace-rs#657</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/rust-lang/backtrace-rs/compare/0.3.73...0.3.74">https://github.com/rust-lang/backtrace-rs/compare/0.3.73...0.3.74</a></p>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/rust-lang/backtrace-rs/commit/38d49aa0395c50047ab26e418a0cb30d9955fb64"><code>38d49aa</code></a>
Merge pull request <a
href="https://redirect.github.com/rust-lang/backtrace-rs/issues/658">#658</a>
from workingjubilee/cut-0.3.74</li>
<li><a
href="https://github.com/rust-lang/backtrace-rs/commit/c1749ce9a8cc0105b9d224e66f9ce4632133c1ea"><code>c1749ce</code></a>
Cut backtrace 0.3.74</li>
<li><a
href="https://github.com/rust-lang/backtrace-rs/commit/230570f2dac80a601f5c0b30da00cc9480bd35eb"><code>230570f</code></a>
Merge pull request <a
href="https://redirect.github.com/rust-lang/backtrace-rs/issues/660">#660</a>
from workingjubilee/dont-unsoundly-iterate-phdr</li>
<li><a
href="https://github.com/rust-lang/backtrace-rs/commit/153f510013e9d486103dac7994d7f75205af397a"><code>153f510</code></a>
Do not destructure maybe-uninit fields</li>
<li><a
href="https://github.com/rust-lang/backtrace-rs/commit/38589464ed3a901794f5858ccbd7f996f6712f64"><code>3858946</code></a>
Revise dl_iterate_phdr callback to be sound-ish</li>
<li><a
href="https://github.com/rust-lang/backtrace-rs/commit/7d062c63749a4c07d9307c96b6cd9485ccd1ad18"><code>7d062c6</code></a><code>rust-lang/backtrace-rs#653</code></li>
<li><a
href="https://github.com/rust-lang/backtrace-rs/commit/fc37b22dc8a384d93f6b7b4817266eec6433875e"><code>fc37b22</code></a><code>rust-lang/backtrace-rs#657</code></li>
<li><a
href="https://github.com/rust-lang/backtrace-rs/commit/600beaa5074be0f40279584450d995c319061ce8"><code>600beaa</code></a><code>rust-lang/backtrace-rs#648</code></li>
<li><a
href="https://github.com/rust-lang/backtrace-rs/commit/84b6c1d56f4bd1b4297187db863c2db6d436c1cf"><code>84b6c1d</code></a><code>rust-lang/backtrace-rs#652</code></li>
<li><a
href="https://github.com/rust-lang/backtrace-rs/commit/95c3bacab9364620864208b651e77a524900480d"><code>95c3bac</code></a>
Make enum
<code>print::PrintFmt</code><code>rust-lang/backtrace-rs#651</code></li>
<li>Additional commits viewable in <a
href="https://github.com/rust-lang/backtrace-rs/compare/0.3.73...0.3.74">compare
view</a></li>
</ul>
</details>
<br />

Updates `bytes` from 1.7.1 to 1.7.2
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/tokio-rs/bytes/releases">bytes's
releases</a>.</em></p>
<blockquote>
<h2>Bytes 1.7.2</h2>
<h1>1.7.2 (September 17, 2024)</h1>
<h3>Fixed</h3>
<ul>
<li>Fix default impl of <code>Buf::{get_int, get_int_le}</code> (<a
href="https://redirect.github.com/tokio-rs/bytes/issues/732">#732</a>)</li>
</ul>
<h3>Documented</h3>
<ul>
<li>Fix double spaces in comments and doc comments (<a
href="https://redirect.github.com/tokio-rs/bytes/issues/731">#731</a>)</li>
</ul>
<h3>Internal changes</h3>
<ul>
<li>Ensure BytesMut::advance reduces capacity (<a
href="https://redirect.github.com/tokio-rs/bytes/issues/728">#728</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/tokio-rs/bytes/blob/master/CHANGELOG.md">bytes's
changelog</a>.</em></p>
<blockquote>
<h1>1.7.2 (September 17, 2024)</h1>
<h3>Fixed</h3>
<ul>
<li>Fix default impl of <code>Buf::{get_int, get_int_le}</code> (<a
href="https://redirect.github.com/tokio-rs/bytes/issues/732">#732</a>)</li>
</ul>
<h3>Documented</h3>
<ul>
<li>Fix double spaces in comments and doc comments (<a
href="https://redirect.github.com/tokio-rs/bytes/issues/731">#731</a>)</li>
</ul>
<h3>Internal changes</h3>
<ul>
<li>Ensure BytesMut::advance reduces capacity (<a
href="https://redirect.github.com/tokio-rs/bytes/issues/728">#728</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/tokio-rs/bytes/commit/d7c1d658d90c922eeee1dbc29bc6f6fd9a1a1a66"><code>d7c1d65</code></a>
chore: prepare bytes v1.7.2 (<a
href="https://redirect.github.com/tokio-rs/bytes/issues/736">#736</a>)</li>
<li><a
href="https://github.com/tokio-rs/bytes/commit/ac46ebdd464144cecd7463a96ca9eb347458ae94"><code>ac46ebd</code></a>
ci: update nightly to nightly-2024-09-15 (<a
href="https://redirect.github.com/tokio-rs/bytes/issues/734">#734</a>)</li>
<li><a
href="https://github.com/tokio-rs/bytes/commit/79fb85323cf4cf14d9b85f487b65fc147030cf4b"><code>79fb853</code></a>
fix: apply sign extension when decoding int (<a
href="https://redirect.github.com/tokio-rs/bytes/issues/732">#732</a>)</li>
<li><a
href="https://github.com/tokio-rs/bytes/commit/291df5acc94b82a48765e67eeb1c1a2074539e68"><code>291df5a</code></a>
Fix double spaces in comments and doc comments (<a
href="https://redirect.github.com/tokio-rs/bytes/issues/731">#731</a>)</li>
<li><a
href="https://github.com/tokio-rs/bytes/commit/ed7d5ff39e39c2802c0fa9e2fc308f6a3e0beda7"><code>ed7d5ff</code></a>
test: ensure BytesMut::advance reduces capacity (<a
href="https://redirect.github.com/tokio-rs/bytes/issues/728">#728</a>)</li>
<li>See full diff in <a
href="https://github.com/tokio-rs/bytes/compare/v1.7.1...v1.7.2">compare
view</a></li>
</ul>
</details>
<br />

Updates `cc` from 1.1.14 to 1.1.22
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/rust-lang/cc-rs/releases">cc's
releases</a>.</em></p>
<blockquote>
<h2>cc-v1.1.22</h2>
<h3>Other</h3>
<ul>
<li>Don't rerun if PATH changes (<a
href="https://redirect.github.com/rust-lang/cc-rs/pull/1215">#1215</a>)</li>
</ul>
<h2>cc-v1.1.21</h2>
<h3>Other</h3>
<ul>
<li>disable pic for targets that end in <code>-none</code> (<a
href="https://redirect.github.com/rust-lang/cc-rs/pull/1212">#1212</a>)</li>
</ul>
<h2>cc-v1.1.20</h2>
<h3>Other</h3>
<ul>
<li>Add buildcache as known Rust and C/C++ compiler wrapper (<a
href="https://redirect.github.com/rust-lang/cc-rs/pull/1209">#1209</a>)</li>
</ul>
<h2>cc-v1.1.19</h2>
<h3>Other</h3>
<ul>
<li>Add support arm64e-apple-darwin (<a
href="https://redirect.github.com/rust-lang/cc-rs/pull/1207">#1207</a>)</li>
</ul>
<h2>cc-v1.1.18</h2>
<h3>Other</h3>
<ul>
<li>Fixed unsoundness in <code>StderrForwarder::forward_available</code>
(<a
href="https://redirect.github.com/rust-lang/cc-rs/pull/1203">#1203</a>)</li>
</ul>
<h2>cc-v1.1.17</h2>
<h3>Fixed</h3>
<ul>
<li>fix finding toolchains when invoked by msbuild (<a
href="https://redirect.github.com/rust-lang/cc-rs/pull/1201">#1201</a>)</li>
</ul>
<h2>cc-v1.1.16</h2>
<h3>Other</h3>
<ul>
<li>Treat VxWorks wr-cc as a Gnu compiler (<a
href="https://redirect.github.com/rust-lang/cc-rs/pull/1198">#1198</a>)</li>
</ul>
<h2>cc-v1.1.15</h2>
<h3>Other</h3>
<ul>
<li>Add -mfloat-abi=hard as a default argument when using any
arm/thumb-none-eabihf target (<a
href="https://redirect.github.com/rust-lang/cc-rs/pull/1194">#1194</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/rust-lang/cc-rs/blob/main/CHANGELOG.md">cc's
changelog</a>.</em></p>
<blockquote>
<h2><a
href="https://github.com/rust-lang/cc-rs/compare/cc-v1.1.21...cc-v1.1.22">1.1.22</a>
- 2024-09-27</h2>
<h3>Other</h3>
<ul>
<li>Don't rerun if PATH changes (<a
href="https://redirect.github.com/rust-lang/cc-rs/pull/1215">#1215</a>)</li>
</ul>
<h2><a
href="https://github.com/rust-lang/cc-rs/compare/cc-v1.1.20...cc-v1.1.21">1.1.21</a>
- 2024-09-18</h2>
<h3>Other</h3>
<ul>
<li>disable pic for targets that end in <code>-none</code> (<a
href="https://redirect.github.com/rust-lang/cc-rs/pull/1212">#1212</a>)</li>
</ul>
<h2><a
href="https://github.com/rust-lang/cc-rs/compare/cc-v1.1.19...cc-v1.1.20">1.1.20</a>
- 2024-09-17</h2>
<h3>Other</h3>
<ul>
<li>Add buildcache as known Rust and C/C++ compiler wrapper (<a
href="https://redirect.github.com/rust-lang/cc-rs/pull/1209">#1209</a>)</li>
</ul>
<h2><a
href="https://github.com/rust-lang/cc-rs/compare/cc-v1.1.18...cc-v1.1.19">1.1.19</a>
- 2024-09-15</h2>
<h3>Other</h3>
<ul>
<li>Add support arm64e-apple-darwin (<a
href="https://redirect.github.com/rust-lang/cc-rs/pull/1207">#1207</a>)</li>
</ul>
<h2><a
href="https://github.com/rust-lang/cc-rs/compare/cc-v1.1.17...cc-v1.1.18">1.1.18</a>
- 2024-09-07</h2>
<h3>Other</h3>
<ul>
<li>Fixed unsoundness in <code>StderrForwarder::forward_available</code>
(<a
href="https://redirect.github.com/rust-lang/cc-rs/pull/1203">#1203</a>)</li>
</ul>
<h2><a
href="https://github.com/rust-lang/cc-rs/compare/cc-v1.1.16...cc-v1.1.17">1.1.17</a>
- 2024-09-06</h2>
<h3>Fixed</h3>
<ul>
<li>fix finding toolchains when invoked by msbuild (<a
href="https://redirect.github.com/rust-lang/cc-rs/pull/1201">#1201</a>)</li>
</ul>
<h2><a
href="https://github.com/rust-lang/cc-rs/compare/cc-v1.1.15...cc-v1.1.16">1.1.16</a>
- 2024-09-04</h2>
<h3>Other</h3>
<ul>
<li>Treat VxWorks wr-cc as a Gnu compiler (<a
href="https://redirect.github.com/rust-lang/cc-rs/pull/1198">#1198</a>)</li>
</ul>
<h2><a
href="https://github.com/rust-lang/cc-rs/compare/cc-v1.1.14...cc-v1.1.15">1.1.15</a>
- 2024-08-26</h2>
<h3>Other</h3>
<ul>
<li>Add -mfloat-abi=hard as a default argument when using any
arm/thumb-none-eabihf target (<a
href="https://redirect.github.com/rust-lang/cc-rs/pull/1194">#1194</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/rust-lang/cc-rs/commit/5f5e1c8c18b53aa1524f720ce21b5a7986a0bf6b"><code>5f5e1c8</code></a>
chore: release (<a
href="https://redirect.github.com/rust-lang/cc-rs/issues/1216">#1216</a>)</li>
<li><a
href="https://github.com/rust-lang/cc-rs/commit/71c672b4afa2f9b6e5046a963d3b5bc1f9ccd2f8"><code>71c672b</code></a>
Don't rerun if PATH changes (<a
href="https://redirect.github.com/rust-lang/cc-rs/issues/1215">#1215</a>)</li>
<li><a
href="https://github.com/rust-lang/cc-rs/commit/748b777e553af972fb0484ece2626beaa354e0a2"><code>748b777</code></a>
chore: release (<a
href="https://redirect.github.com/rust-lang/cc-rs/issues/1213">#1213</a>)</li>
<li><a
href="https://github.com/rust-lang/cc-rs/commit/270ec653371a12498c3a338fb8b4a5d35e8388c6"><code>270ec65</code></a>
disable pic for targets that end in <code>-none</code> (<a
href="https://redirect.github.com/rust-lang/cc-rs/issues/1212">#1212</a>)</li>
<li><a
href="https://github.com/rust-lang/cc-rs/commit/92a5e28c084aefc101d2f71f236614d9fcaa1f9e"><code>92a5e28</code></a>
chore: release (<a
href="https://redirect.github.com/rust-lang/cc-rs/issues/1210">#1210</a>)</li>
<li><a
href="https://github.com/rust-lang/cc-rs/commit/dab5d7adb4c090ac9d8650e7d97897a711ac7a14"><code>dab5d7a</code></a>
Add buildcache as known Rust and C/C++ compiler wrapper (<a
href="https://redirect.github.com/rust-lang/cc-rs/issues/1209">#1209</a>)</li>
<li><a
href="https://github.com/rust-lang/cc-rs/commit/c0b3eae28300fc8b36eb3a0b519ef4083f1a129e"><code>c0b3eae</code></a>
chore: release (<a
href="https://redirect.github.com/rust-lang/cc-rs/issues/1208">#1208</a>)</li>
<li><a
href="https://github.com/rust-lang/cc-rs/commit/278a606afb79b00cfe7a1372dbaa3529ecce3dc4"><code>278a606</code></a>
Add support arm64e-apple-darwin (<a
href="https://redirect.github.com/rust-lang/cc-rs/issues/1207">#1207</a>)</li>
<li><a
href="https://github.com/rust-lang/cc-rs/commit/668facdbbcade9ebfb48c8ea0b658fc2688c4e5c"><code>668facd</code></a>
chore: release (<a
href="https://redirect.github.com/rust-lang/cc-rs/issues/1204">#1204</a>)</li>
<li><a
href="https://github.com/rust-lang/cc-rs/commit/5e161c6f4452fe63985bdfc78462ceda94c99805"><code>5e161c6</code></a>
Fixed unsoundness in <code>StderrForwarder::forward_available</code> (<a
href="https://redirect.github.com/rust-lang/cc-rs/issues/1203">#1203</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/rust-lang/cc-rs/compare/cc-v1.1.14...cc-v1.1.22">compare
view</a></li>
</ul>
</details>
<br />

Updates `clap_builder` from 4.5.15 to 4.5.18
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/clap-rs/clap/releases">clap_builder's
releases</a>.</em></p>
<blockquote>
<h2>v4.5.18</h2>
<h2>[4.5.18] - 2024-09-20</h2>
<h3>Features</h3>
<ul>
<li><em>(builder)</em> Expose <code>Arg::get_display_order</code> and
<code>Command::get_display_order</code></li>
</ul>
<h2>v4.5.17</h2>
<h2>[4.5.17] - 2024-09-04</h2>
<h3>Fixes</h3>
<ul>
<li><em>(help)</em> Style required argument groups</li>
<li><em>(derive)</em> Improve error messages when unsupported fields are
used</li>
</ul>
<h2>v4.5.16</h2>
<h2>[4.5.16] - 2024-08-15</h2>
<h3>Fixes</h3>
<ul>
<li><em>(derive)</em> Improve error messages when <code>derive</code>
feature is missing</li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/clap-rs/clap/blob/master/CHANGELOG.md">clap_builder's
changelog</a>.</em></p>
<blockquote>
<h2>[4.5.18] - 2024-09-20</h2>
<h3>Features</h3>
<ul>
<li><em>(builder)</em> Expose <code>Arg::get_display_order</code> and
<code>Command::get_display_order</code></li>
</ul>
<h2>[4.5.17] - 2024-09-04</h2>
<h3>Fixes</h3>
<ul>
<li><em>(help)</em> Style required argument groups</li>
<li><em>(derive)</em> Improve error messages when unsupported fields are
used</li>
</ul>
<h2>[4.5.16] - 2024-08-15</h2>
<h3>Fixes</h3>
<ul>
<li><em>(derive)</em> Improve error messages when <code>derive</code>
feature is missing</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/clap-rs/clap/commit/0d142f6c04a702b791d2dfec8327661ba1b6d16c"><code>0d142f6</code></a>
chore: Release</li>
<li><a
href="https://github.com/clap-rs/clap/commit/0facf1f370e7966a4d97bce56d1d10ca4c80d0ae"><code>0facf1f</code></a>
docs: Update changelog</li>
<li><a
href="https://github.com/clap-rs/clap/commit/ee6af99c6c5e239c0f2c92f9d1baf8aa3bb4af90"><code>ee6af99</code></a>
Merge pull request <a
href="https://redirect.github.com/clap-rs/clap/issues/5743">#5743</a>
from epage/sort</li>
<li><a
href="https://github.com/clap-rs/clap/commit/232ee106615e997f0841bb3de97eed126b929fe3"><code>232ee10</code></a>
fix(complete): Use existing display order for Arg/Command</li>
<li><a
href="https://github.com/clap-rs/clap/commit/c6b5d627a0c17527630e4086a4fe83589365d1f0"><code>c6b5d62</code></a>
feat(builder): Expose get_display_order</li>
<li><a
href="https://github.com/clap-rs/clap/commit/67d9fef9cee8f1b297aed73e6d95f78744b43a27"><code>67d9fef</code></a>
feat(complete): Give control over display order</li>
<li><a
href="https://github.com/clap-rs/clap/commit/59a61e188fbb9999db52f567e3951d3720204084"><code>59a61e1</code></a>
refactor(complete): Pull out common candidate code</li>
<li><a
href="https://github.com/clap-rs/clap/commit/144879194081212046d5566572bfa15ea9bcca35"><code>1448791</code></a>
fix(complete): Specify tags for built-in candiates</li>
<li><a
href="https://github.com/clap-rs/clap/commit/a4aa5dffdf46a2975f2b2d51ce7e618e19250ead"><code>a4aa5df</code></a>
feat(complete): Group by tag</li>
<li><a
href="https://github.com/clap-rs/clap/commit/a126149a809f01586ccb6d9299eb2fc2c87d8fe0"><code>a126149</code></a>
refactor(complete): Remove redundant dedup</li>
<li>Additional commits viewable in <a
href="https://github.com/clap-rs/clap/compare/v4.5.15...v4.5.18">compare
view</a></li>
</ul>
</details>
<br />

Updates `clap_derive` from 4.5.13 to 4.5.18
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/clap-rs/clap/releases">clap_derive's
releases</a>.</em></p>
<blockquote>
<h2>v4.5.18</h2>
<h2>[4.5.18] - 2024-09-20</h2>
<h3>Features</h3>
<ul>
<li><em>(builder)</em> Expose <code>Arg::get_display_order</code> and
<code>Command::get_display_order</code></li>
</ul>
<h2>v4.5.17</h2>
<h2>[4.5.17] - 2024-09-04</h2>
<h3>Fixes</h3>
<ul>
<li><em>(help)</em> Style required argument groups</li>
<li><em>(derive)</em> Improve error messages when unsupported fields are
used</li>
</ul>
<h2>v4.5.16</h2>
<h2>[4.5.16] - 2024-08-15</h2>
<h3>Fixes</h3>
<ul>
<li><em>(derive)</em> Improve error messages when <code>derive</code>
feature is missing</li>
</ul>
<h2>v4.5.15</h2>
<h2>[4.5.15] - 2024-08-10</h2>
<h3>Compatiblity</h3>
<ul>
<li><em>(unstable-ext)</em> <code>Arg::remove</code> changed return
types</li>
</ul>
<h3>Fixes</h3>
<ul>
<li><em>(unstable-ext)</em> Make <code>Arg::remove</code> return the
removed item</li>
</ul>
<h2>v4.5.14</h2>
<h2>[4.5.14] - 2024-08-08</h2>
<h3>Features</h3>
<ul>
<li><em>(unstable-ext)</em> Added <code>Arg::add</code> for attaching
arbitrary state, like completion hints, to <code>Arg</code> without
<code>Arg</code> knowing about it</li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/clap-rs/clap/blob/master/CHANGELOG.md">clap_derive's
changelog</a>.</em></p>
<blockquote>
<h2>[4.5.18] - 2024-09-20</h2>
<h3>Features</h3>
<ul>
<li><em>(builder)</em> Expose <code>Arg::get_display_order</code> and
<code>Command::get_display_order</code></li>
</ul>
<h2>[4.5.17] - 2024-09-04</h2>
<h3>Fixes</h3>
<ul>
<li><em>(help)</em> Style required argument groups</li>
<li><em>(derive)</em> Improve error messages when unsupported fields are
used</li>
</ul>
<h2>[4.5.16] - 2024-08-15</h2>
<h3>Fixes</h3>
<ul>
<li><em>(derive)</em> Improve error messages when <code>derive</code>
feature is missing</li>
</ul>
<h2>[4.5.15] - 2024-08-10</h2>
<h3>Compatiblity</h3>
<ul>
<li><em>(unstable-ext)</em> <code>Arg::remove</code> changed return
types</li>
</ul>
<h3>Fixes</h3>
<ul>
<li><em>(unstable-ext)</em> Make <code>Arg::remove</code> return the
removed item</li>
</ul>
<h2>[4.5.14] - 2024-08-08</h2>
<h3>Features</h3>
<ul>
<li><em>(unstable-ext)</em> Added <code>Arg::add</code> for attaching
arbitrary state, like completion hints, to <code>Arg</code> without
<code>Arg</code> knowing about it</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/clap-rs/clap/commit/0d142f6c04a702b791d2dfec8327661ba1b6d16c"><code>0d142f6</code></a>
chore: Release</li>
<li><a
href="https://github.com/clap-rs/clap/commit/0facf1f370e7966a4d97bce56d1d10ca4c80d0ae"><code>0facf1f</code></a>
docs: Update changelog</li>
<li><a
href="https://github.com/clap-rs/clap/commit/ee6af99c6c5e239c0f2c92f9d1baf8aa3bb4af90"><code>ee6af99</code></a>
Merge pull request <a
href="https://redirect.github.com/clap-rs/clap/issues/5743">#5743</a>
from epage/sort</li>
<li><a
href="https://github.com/clap-rs/clap/commit/232ee106615e997f0841bb3de97eed126b929fe3"><code>232ee10</code></a>
fix(complete): Use existing display order for Arg/Command</li>
<li><a
href="https://github.com/clap-rs/clap/commit/c6b5d627a0c17527630e4086a4fe83589365d1f0"><code>c6b5d62</code></a>
feat(builder): Expose get_display_order</li>
<li><a
href="https://github.com/clap-rs/clap/commit/67d9fef9cee8f1b297aed73e6d95f78744b43a27"><code>67d9fef</code></a>
feat(complete): Give control over display order</li>
<li><a
href="https://github.com/clap-rs/clap/commit/59a61e188fbb9999db52f567e3951d3720204084"><code>59a61e1</code></a>
refactor(complete): Pull out common candidate code</li>
<li><a
href="https://github.com/clap-rs/clap/commit/144879194081212046d5566572bfa15ea9bcca35"><code>1448791</code></a>
fix(complete): Specify tags for built-in candiates</li>
<li><a
href="https://github.com/clap-rs/clap/commit/a4aa5dffdf46a2975f2b2d51ce7e618e19250ead"><code>a4aa5df</code></a>
feat(complete): Group by tag</li>
<li><a
href="https://github.com/clap-rs/clap/commit/a126149a809f01586ccb6d9299eb2fc2c87d8fe0"><code>a126149</code></a>
refactor(complete): Remove redundant dedup</li>
<li>Additional commits viewable in <a
href="https://github.com/clap-rs/clap/compare/v4.5.13...v4.5.18">compare
view</a></li>
</ul>
</details>
<br />

Updates `const_format_proc_macros` from 0.2.32 to 0.2.33
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/rodrimati1992/const_format_crates/blob/master/Changelog.md">const_format_proc_macros's
changelog</a>.</em></p>
<blockquote>
<h3>0.2.33</h3>
<p>Fixed Rust Analyzer style warning for assertion macros.</p>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li>See full diff in <a
href="https://github.com/rodrimati1992/const_format_crates/commits">compare
view</a></li>
</ul>
</details>
<br />

Updates `cpufeatures` from 0.2.13 to 0.2.14
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/RustCrypto/utils/commit/6a87dce97c9f927bea999ab957ccb6bc60a6c36f"><code>6a87dce</code></a>
cpufeatures v0.2.14 (<a
href="https://redirect.github.com/RustCrypto/utils/issues/1104">#1104</a>)</li>
<li><a
href="https://github.com/RustCrypto/utils/commit/4be67893ccece4823b606c5e29eccd44f7e07450"><code>4be6789</code></a>
aarch64-dit: initial crate (<a
href="https://redirect.github.com/RustCrypto/utils/issues/1102">#1102</a>)</li>
<li><a
href="https://github.com/RustCrypto/utils/commit/141756093ae5ee316af9cd3b459d4c5225bc86dd"><code>1417560</code></a>
README.md(s): use img.shields.io crate version badges</li>
<li><a
href="https://github.com/RustCrypto/utils/commit/cfa21ea50a22df26a52e17649e203e0c2657154d"><code>cfa21ea</code></a>
cpufeatures: add DIT support for AArch64 Linux targets (<a
href="https://redirect.github.com/RustCrypto/utils/issues/1101">#1101</a>)</li>
<li><a
href="https://github.com/RustCrypto/utils/commit/1ad40787ec88039f829144ef59b7bc506eaf07ed"><code>1ad4078</code></a>
cpufeatures: add support for DIT detection on Apple silicon (<a
href="https://redirect.github.com/RustCrypto/utils/issues/1100">#1100</a>)</li>
<li><a
href="https://github.com/RustCrypto/utils/commit/5d46aba5ef3720e854f48d93243c247e4611b125"><code>5d46aba</code></a>
block-buffer: release v0.11.0-rc.1 (<a
href="https://redirect.github.com/RustCrypto/utils/issues/1098">#1098</a>)</li>
<li>See full diff in <a
href="https://github.com/RustCrypto/utils/compare/cpufeatures-v0.2.13...cpufeatures-v0.2.14">compare
view</a></li>
</ul>
</details>
<br />

Updates `fastrand` from 2.1.0 to 2.1.1
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/smol-rs/fastrand/releases">fastrand's
releases</a>.</em></p>
<blockquote>
<h2>v2.1.1</h2>
<ul>
<li>Remove support for 128-bit targets, as they are not supported by
rustc yet. (<a
href="https://redirect.github.com/smol-rs/fastrand/issues/87">#87</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/smol-rs/fastrand/blob/master/CHANGELOG.md">fastrand's
changelog</a>.</em></p>
<blockquote>
<h1>Version 2.1.1</h1>
<ul>
<li>Remove support for 128-bit targets, as they are not supported by
rustc yet. (<a
href="https://redirect.github.com/smol-rs/fastrand/issues/87">#87</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/smol-rs/fastrand/commit/9d1a66fe46cee30e6c716812a9df467c653fa290"><code>9d1a66f</code></a>
v2.1.1</li>
<li><a
href="https://github.com/smol-rs/fastrand/commit/d05504dee3e2ec359fca62db9353de2ad3dfff40"><code>d05504d</code></a>
bugfix: Remove 128-bit value generator</li>
<li><a
href="https://github.com/smol-rs/fastrand/commit/7e60c7f688f9be3dcd4f59f216c87dac88ca2902"><code>7e60c7f</code></a>
chore: Forgot to bump the version</li>
<li>See full diff in <a
href="https://github.com/smol-rs/fastrand/compare/v2.1.0...v2.1.1">compare
view</a></li>
</ul>
</details>
<br />

Updates `flate2` from 1.0.32 to 1.0.34
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/rust-lang/flate2-rs/releases">flate2's
releases</a>.</em></p>
<blockquote>
<h2>1.0.34</h2>
<h2>What's Changed</h2>
<ul>
<li>Add minimum build test back in to CI by <a
href="https://github.com/jongiddy"><code>@​jongiddy</code></a> in <a
href="https://redirect.github.com/rust-lang/flate2-rs/pull/426">rust-lang/flate2-rs#426</a></li>
<li>docs: fix compression level range from 0-9 to 0-10 by <a
href="https://github.com/ByteBaker"><code>@​ByteBaker</code></a> in <a
href="https://redirect.github.com/rust-lang/flate2-rs/pull/427">rust-lang/flate2-rs#427</a></li>
<li>Document backend differences in compression levels by <a
href="https://github.com/Shnatsel"><code>@​Shnatsel</code></a> in <a
href="https://redirect.github.com/rust-lang/flate2-rs/pull/430">rust-lang/flate2-rs#430</a></li>
<li>Upgrade zlib-rs to 0.3.0 to get multiple bugfixes by <a
href="https://github.com/Shnatsel"><code>@​Shnatsel</code></a> in <a
href="https://redirect.github.com/rust-lang/flate2-rs/pull/428">rust-lang/flate2-rs#428</a></li>
<li>Better wording in compression level docs by <a
href="https://github.com/Shnatsel"><code>@​Shnatsel</code></a> in <a
href="https://redirect.github.com/rust-lang/flate2-rs/pull/431">rust-lang/flate2-rs#431</a></li>
</ul>
<h2>New Contributors</h2>
<ul>
<li><a href="https://github.com/ByteBaker"><code>@​ByteBaker</code></a>
made their first contribution in <a
href="https://redirect.github.com/rust-lang/flate2-rs/pull/427">rust-lang/flate2-rs#427</a></li>
<li><a href="https://github.com/Shnatsel"><code>@​Shnatsel</code></a>
made their first contribution in <a
href="https://redirect.github.com/rust-lang/flate2-rs/pull/430">rust-lang/flate2-rs#430</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/rust-lang/flate2-rs/compare/1.0.33...1.0.34">https://github.com/rust-lang/flate2-rs/compare/1.0.33...1.0.34</a></p>
<h2>1.0.33 - fix minimal manifest versions</h2>
<h2>What's Changed</h2>
<ul>
<li>Fix msrv: Run msrv checks with minimal versions by <a
href="https://github.com/NobodyXu"><code>@​NobodyXu</code></a> in <a
href="https://redirect.github.com/rust-lang/flate2-rs/pull/425">rust-lang/flate2-rs#425</a></li>
</ul>
<h2>New Contributors</h2>
<ul>
<li><a href="https://github.com/NobodyXu"><code>@​NobodyXu</code></a>
made their first contribution in <a
href="https://redirect.github.com/rust-lang/flate2-rs/pull/425">rust-lang/flate2-rs#425</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/rust-lang/flate2-rs/compare/1.0.32...1.0.33">https://github.com/rust-lang/flate2-rs/compare/1.0.32...1.0.33</a></p>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/rust-lang/flate2-rs/commit/1a28821dc116dac14178858be056e4a58ef8f501"><code>1a28821</code></a>
Merge pull request <a
href="https://redirect.github.com/rust-lang/flate2-rs/issues/431">#431</a>
from Shnatsel/better-wording</li>
<li><a
href="https://github.com/rust-lang/flate2-rs/commit/2c29780e5093b10c21954384cd97243770376814"><code>2c29780</code></a>
Merge pull request <a
href="https://redirect.github.com/rust-lang/flate2-rs/issues/428">#428</a>
from Shnatsel/upgrade-zlib-rs</li>
<li><a
href="https://github.com/rust-lang/flate2-rs/commit/423981aede8670a51d2c3aa657ae528152c0f64e"><code>423981a</code></a>
Better wording in compression level docs</li>
<li><a
href="https://github.com/rust-lang/flate2-rs/commit/da5c8cfd917b0ec2aeacc2e514b27b6bd50726e4"><code>da5c8cf</code></a>
Bump version</li>
<li><a
href="https://github.com/rust-lang/flate2-rs/commit/eeee4c641187628ec8676ffb24300c5da6bfb066"><code>eeee4c6</code></a>
Merge pull request <a
href="https://redirect.github.com/rust-lang/flate2-rs/issues/430">#430</a>
from Shnatsel/detailed-level-docs</li>
<li><a
href="https://github.com/rust-lang/flate2-rs/commit/731df32113188f3372367402b9ea2b…
whyakari added a commit to whyakari/KernelSU that referenced this pull request Oct 31, 2024
… nongki

* 'legacy' of https://github.com/backslashxx/KernelSU: (113 commits)
  manager: unofficial build
  dummy.keystore
  workflows: debloat
  treewide: adjust version counting
  Revert "[1.0] Drop Non-GKI Support (tiann#1483)"
  Revert "Drop some legacy codes (tiann#1981)"
  build(deps): bump the crates group across 1 directory with 38 updates (tiann#2163)
  build(deps): bump the npm group across 1 directory with 35 updates (tiann#2161)
  Translations update from Hosted Weblate (tiann#2065)
  Renewed rmx3511 kernel source git repo link (tiann#2164)
  manager: Add action.sh for user to manually trigger modules' functionality from manager (tiann#2156)
  manager: Bump dependencies, Adjust pull refresh UI, Add transitions back (tiann#2139)
  manager: detect init_boot with Android version in uname (tiann#2142)
  add device to unofficial supported list (tiann#2136)
  [add device]: (tiann#2117)
  manager: Refactor the click logic of ModuleItem (tiann#2105)
  build(deps): bump the npm group across 1 directory with 28 updates (tiann#2097)
  build(deps): bump the crates group across 1 directory with 32 updates (tiann#2098)
  manager: Insets stuffs for Android 15 (tiann#2100)
  api: spawn CallbackList use UiThreadHandler::runAndWait executor (tiann#2096)
  ...
backslashxx pushed a commit to backslashxx/KernelSU that referenced this pull request Nov 14, 2024
…tiann#2098)

Bumps the crates group with 25 updates in the /userspace/ksud directory:

| Package | From | To |
| --- | --- | --- |
| [anyhow](https://github.com/dtolnay/anyhow) | `1.0.86` | `1.0.89` |
| [clap](https://github.com/clap-rs/clap) | `4.5.16` | `4.5.18` |
| [const_format](https://github.com/rodrimati1992/const_format_crates) |
`0.2.32` | `0.2.33` |
| [serde](https://github.com/serde-rs/serde) | `1.0.208` | `1.0.210` |
| [serde_json](https://github.com/serde-rs/json) | `1.0.125` | `1.0.128`
|
| [libc](https://github.com/rust-lang/libc) | `0.2.158` | `0.2.159` |
| [is_executable](https://github.com/fitzgen/is_executable) | `1.0.1` |
`1.0.3` |
| [derive-new](https://github.com/nrc/derive-new) | `0.6.0` | `0.7.0` |
| [async-trait](https://github.com/dtolnay/async-trait) | `0.1.81` |
`0.1.83` |
| [autocfg](https://github.com/cuviper/autocfg) | `1.3.0` | `1.4.0` |
| [backtrace](https://github.com/rust-lang/backtrace-rs) | `0.3.73` |
`0.3.74` |
| [bytes](https://github.com/tokio-rs/bytes) | `1.7.1` | `1.7.2` |
| [cc](https://github.com/rust-lang/cc-rs) | `1.1.14` | `1.1.22` |
| [cpufeatures](https://github.com/RustCrypto/utils) | `0.2.13` |
`0.2.14` |
| [fastrand](https://github.com/smol-rs/fastrand) | `2.1.0` | `2.1.1` |
| [flate2](https://github.com/rust-lang/flate2-rs) | `1.0.32` | `1.0.34`
|
| [iana-time-zone](https://github.com/strawlab/iana-time-zone) |
`0.1.60` | `0.1.61` |
| [indexmap](https://github.com/indexmap-rs/indexmap) | `2.4.0` |
`2.5.0` |
| [object](https://github.com/gimli-rs/object) | `0.36.3` | `0.36.4` |
| [syn](https://github.com/dtolnay/syn) | `2.0.75` | `2.0.77` |
| [thiserror](https://github.com/dtolnay/thiserror) | `1.0.63` |
`1.0.64` |
| [tokio](https://github.com/tokio-rs/tokio) | `1.39.3` | `1.40.0` |
| [unicode-ident](https://github.com/dtolnay/unicode-ident) | `1.0.12` |
`1.0.13` |
| [unicode-width](https://github.com/unicode-rs/unicode-width) |
`0.1.13` | `0.1.14` |
| [unicode-xid](https://github.com/unicode-rs/unicode-xid) | `0.2.5` |
`0.2.6` |


Updates `anyhow` from 1.0.86 to 1.0.89
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/dtolnay/anyhow/releases">anyhow's
releases</a>.</em></p>
<blockquote>
<h2>1.0.89</h2>
<ul>
<li>Make anyhow::Error's <code>UnwindSafe</code> and
<code>RefUnwindSafe</code> impl consistently available between versions
of Rust newer and older than 1.72 (<a
href="https://redirect.github.com/dtolnay/anyhow/issues/386">#386</a>)</li>
</ul>
<h2>1.0.88</h2>
<ul>
<li>Documentation improvements</li>
</ul>
<h2>1.0.87</h2>
<ul>
<li>Support more APIs, including <code>Error::new</code> and
<code>Error::chain</code>, in no-std mode on Rust 1.81+ (<a
href="https://redirect.github.com/dtolnay/anyhow/issues/383">#383</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/dtolnay/anyhow/commit/9d3fb6d0968bd9f95a0d8bbc5269eb2496880510"><code>9d3fb6d</code></a>
Release 1.0.89</li>
<li><a
href="https://github.com/dtolnay/anyhow/commit/830c399126c1db902681130f5c4273d93767b990"><code>830c399</code></a>
Merge pull request <a
href="https://redirect.github.com/dtolnay/anyhow/issues/386">#386</a>
from dtolnay/unwindsafe</li>
<li><a
href="https://github.com/dtolnay/anyhow/commit/8454be372f2a7832436d7021b8f2f0a96db558b3"><code>8454be3</code></a>
Ensure UnwindSafe even with &quot;backtrace&quot; feature enabled and
old Rust</li>
<li><a
href="https://github.com/dtolnay/anyhow/commit/a85e414bf555ed961f59c2c69410e7b5f706df65"><code>a85e414</code></a>
Add more autotraits tests</li>
<li><a
href="https://github.com/dtolnay/anyhow/commit/139f266b903ac2eab462292495f864740446dcdc"><code>139f266</code></a>
Release 1.0.88</li>
<li><a
href="https://github.com/dtolnay/anyhow/commit/aa3ab2b9f0a8cdf4b54dae58d39a2446c5eecbb2"><code>aa3ab2b</code></a>
Merge pull request <a
href="https://redirect.github.com/dtolnay/anyhow/issues/385">#385</a>
from dtolnay/docnostd</li>
<li><a
href="https://github.com/dtolnay/anyhow/commit/44c37674d35a0899fde03ae2fdaeee0bd4c38501"><code>44c3767</code></a>
Update documentation on no-std error type conversions</li>
<li><a
href="https://github.com/dtolnay/anyhow/commit/afe93e7b167d069ac79f2c7f363b919d3793e6ce"><code>afe93e7</code></a>
Release 1.0.87</li>
<li><a
href="https://github.com/dtolnay/anyhow/commit/d58fa4b282c1149bd121419dd359eb8caf2c113d"><code>d58fa4b</code></a>
Fix outdated html_root_url</li>
<li><a
href="https://github.com/dtolnay/anyhow/commit/c18d80743cead05bd75cf2e310e7a00c515facb9"><code>c18d807</code></a>
Disable unused doc_cfg feature</li>
<li>Additional commits viewable in <a
href="https://github.com/dtolnay/anyhow/compare/1.0.86...1.0.89">compare
view</a></li>
</ul>
</details>
<br />

Updates `clap` from 4.5.16 to 4.5.18
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/clap-rs/clap/releases">clap's
releases</a>.</em></p>
<blockquote>
<h2>v4.5.18</h2>
<h2>[4.5.18] - 2024-09-20</h2>
<h3>Features</h3>
<ul>
<li><em>(builder)</em> Expose <code>Arg::get_display_order</code> and
<code>Command::get_display_order</code></li>
</ul>
<h2>v4.5.17</h2>
<h2>[4.5.17] - 2024-09-04</h2>
<h3>Fixes</h3>
<ul>
<li><em>(help)</em> Style required argument groups</li>
<li><em>(derive)</em> Improve error messages when unsupported fields are
used</li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/clap-rs/clap/blob/master/CHANGELOG.md">clap's
changelog</a>.</em></p>
<blockquote>
<h2>[4.5.18] - 2024-09-20</h2>
<h3>Features</h3>
<ul>
<li><em>(builder)</em> Expose <code>Arg::get_display_order</code> and
<code>Command::get_display_order</code></li>
</ul>
<h2>[4.5.17] - 2024-09-04</h2>
<h3>Fixes</h3>
<ul>
<li><em>(help)</em> Style required argument groups</li>
<li><em>(derive)</em> Improve error messages when unsupported fields are
used</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/clap-rs/clap/commit/d81158599f5b3a2434845a1731377eae84780b9a"><code>d811585</code></a>
chore: Release</li>
<li><a
href="https://github.com/clap-rs/clap/commit/ab948b35561b5bc64b50d6a52d799aa5ac5de187"><code>ab948b3</code></a>
docs: Update changelog</li>
<li><a
href="https://github.com/clap-rs/clap/commit/82e599e91d64ddae7231c98a91b4cd39e8c9036d"><code>82e599e</code></a>
Merge pull request <a
href="https://redirect.github.com/clap-rs/clap/issues/5602">#5602</a>
from shannmu/delimiter_values</li>
<li><a
href="https://github.com/clap-rs/clap/commit/59bf26dd56032a7a4e6d923cd37de6e72c33078e"><code>59bf26d</code></a>
feat(clap_complete): Support delimiter values in native completions</li>
<li><a
href="https://github.com/clap-rs/clap/commit/ccecab394b45bc4dd251d00b7d69737ed93d18f8"><code>ccecab3</code></a>
test(clap_complete): Add test cases for delimiter_values support</li>
<li><a
href="https://github.com/clap-rs/clap/commit/a3a476407b01f083dc06200783ad745bc45e5da8"><code>a3a4764</code></a>
docs(derive): Specify Parser::update_from semantics</li>
<li><a
href="https://github.com/clap-rs/clap/commit/df165a2da431138bcc5cd891aec922cbdeda6ded"><code>df165a2</code></a>
docs(derive): Flatten isn't just for update</li>
<li><a
href="https://github.com/clap-rs/clap/commit/5488bcfa30255c59f931f1248e854c0087b2b969"><code>5488bcf</code></a>
docs(derive): Connect more dots for Args/Subcommand</li>
<li><a
href="https://github.com/clap-rs/clap/commit/6013ad4f676dd25c5b5150557a5fb5698c3de020"><code>6013ad4</code></a>
chore: Release</li>
<li><a
href="https://github.com/clap-rs/clap/commit/f98e3ee215015055d776f91217019c33da78c975"><code>f98e3ee</code></a>
docs: Update changelog</li>
<li>Additional commits viewable in <a
href="https://github.com/clap-rs/clap/compare/clap_complete-v4.5.16...clap_complete-v4.5.18">compare
view</a></li>
</ul>
</details>
<br />

Updates `const_format` from 0.2.32 to 0.2.33
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/rodrimati1992/const_format_crates/blob/master/Changelog.md">const_format's
changelog</a>.</em></p>
<blockquote>
<h3>0.2.33</h3>
<p>Fixed Rust Analyzer style warning for assertion macros.</p>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li>See full diff in <a
href="https://github.com/rodrimati1992/const_format_crates/commits">compare
view</a></li>
</ul>
</details>
<br />

Updates `serde` from 1.0.208 to 1.0.210
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/serde-rs/serde/releases">serde's
releases</a>.</em></p>
<blockquote>
<h2>v1.0.210</h2>
<ul>
<li>Support serializing and deserializing <code>IpAddr</code> and
<code>SocketAddr</code> in no-std mode on Rust 1.77+ (<a
href="https://redirect.github.com/serde-rs/serde/issues/2816">#2816</a>,
thanks <a
href="https://github.com/MathiasKoch"><code>@​MathiasKoch</code></a>)</li>
<li>Make <code>serde::ser::StdError</code> and
<code>serde::de::StdError</code> equivalent to
<code>core::error::Error</code> on Rust 1.81+ (<a
href="https://redirect.github.com/serde-rs/serde/issues/2818">#2818</a>)</li>
</ul>
<h2>v1.0.209</h2>
<ul>
<li>Fix deserialization of empty structs and empty tuples inside of
untagged enums (<a
href="https://redirect.github.com/serde-rs/serde/issues/2805">#2805</a>,
thanks <a
href="https://github.com/Mingun"><code>@​Mingun</code></a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/serde-rs/serde/commit/89c4b02bf32ceae5b17d89f93a452ccc195ca038"><code>89c4b02</code></a>
Release 1.0.210</li>
<li><a
href="https://github.com/serde-rs/serde/commit/eeb8e44cda15f929796cd72241b0311e0bd04e67"><code>eeb8e44</code></a>
Merge pull request <a
href="https://redirect.github.com/serde-rs/serde/issues/2818">#2818</a>
from dtolnay/coreerror</li>
<li><a
href="https://github.com/serde-rs/serde/commit/785c2d9605ee73cc172dfd421228c1dccca984c9"><code>785c2d9</code></a>
Stabilize no-std StdError trait</li>
<li><a
href="https://github.com/serde-rs/serde/commit/d549f048e10bcb5e677afaf7b99d0ed3604b113b"><code>d549f04</code></a>
Reformat parse_ip_impl definition and calls</li>
<li><a
href="https://github.com/serde-rs/serde/commit/4c0dd63011434905265e2710bb9186e09e4f8ec2"><code>4c0dd63</code></a>
Delete attr support from core::net deserialization macros</li>
<li><a
href="https://github.com/serde-rs/serde/commit/26fb1341651c4e0ae4d58c675db3ca2a0d6e12c2"><code>26fb134</code></a>
Relocate cfg attrs out of parse_ip_impl and parse_socket_impl</li>
<li><a
href="https://github.com/serde-rs/serde/commit/07e614b52b5ab3387d86d3198e5f52cd1f5ff3cb"><code>07e614b</code></a>
Merge pull request <a
href="https://redirect.github.com/serde-rs/serde/issues/2817">#2817</a>
from dtolnay/corenet</li>
<li><a
href="https://github.com/serde-rs/serde/commit/b1f899fbe81f070803d9f7ca6e5d1cc3f19c9ea2"><code>b1f899f</code></a>
Delete doc(cfg) attribute from impls that are supported in no-std</li>
<li><a
href="https://github.com/serde-rs/serde/commit/b4f860e62767828beb3ef91721b6c56a31f9baad"><code>b4f860e</code></a>
Merge pull request <a
href="https://redirect.github.com/serde-rs/serde/issues/2816">#2816</a>
from MathiasKoch/chore/core-net</li>
<li><a
href="https://github.com/serde-rs/serde/commit/d940fe1b4934f097b0333dcb87bec5ee308d39cd"><code>d940fe1</code></a>
Reuse existing Buf wrapper as replacement for std::io::Write</li>
<li>Additional commits viewable in <a
href="https://github.com/serde-rs/serde/compare/v1.0.208...v1.0.210">compare
view</a></li>
</ul>
</details>
<br />

Updates `serde_json` from 1.0.125 to 1.0.128
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/serde-rs/json/releases">serde_json's
releases</a>.</em></p>
<blockquote>
<h2>1.0.128</h2>
<ul>
<li>Support serializing maps containing 128-bit integer keys to
serde_json::Value (<a
href="https://redirect.github.com/serde-rs/json/issues/1188">#1188</a>,
thanks <a
href="https://github.com/Mrreadiness"><code>@​Mrreadiness</code></a>)</li>
</ul>
<h2>1.0.127</h2>
<ul>
<li>Add more removal methods to OccupiedEntry (<a
href="https://redirect.github.com/serde-rs/json/issues/1179">#1179</a>,
thanks <a
href="https://github.com/GREsau"><code>@​GREsau</code></a>)</li>
</ul>
<h2>1.0.126</h2>
<ul>
<li>Improve string parsing on targets that use 32-bit pointers but also
have fast 64-bit integer arithmetic, such as
aarch64-unknown-linux-gnu_ilp32 and x86_64-unknown-linux-gnux32 (<a
href="https://redirect.github.com/serde-rs/json/issues/1182">#1182</a>,
thanks <a href="https://github.com/CryZe"><code>@​CryZe</code></a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/serde-rs/json/commit/d96b1d9b643b49a0bb92a8cf280daf6aa08f37cc"><code>d96b1d9</code></a>
Release 1.0.128</li>
<li><a
href="https://github.com/serde-rs/json/commit/599228d5dc52a0f1595fe4bd901821f70d0317a5"><code>599228d</code></a>
Merge pull request <a
href="https://redirect.github.com/serde-rs/json/issues/1188">#1188</a>
from Mrreadiness/feat/add-hashmap-key-128-serializer</li>
<li><a
href="https://github.com/serde-rs/json/commit/5416cee6c5ad355907f6e9d5f6039b994c69f768"><code>5416cee</code></a>
feat: add support for 128 bit HashMap key serialization</li>
<li><a
href="https://github.com/serde-rs/json/commit/27a4ca9d7a62394fe8f0103f3d91de59f055a4c4"><code>27a4ca9</code></a>
Upload CI Cargo.lock for reproducing failures</li>
<li><a
href="https://github.com/serde-rs/json/commit/5ebf65cc480f90714c94f82099ca9161d80cbb10"><code>5ebf65c</code></a>
Release 1.0.127</li>
<li><a
href="https://github.com/serde-rs/json/commit/f287a3b1a93ecb1a11cee31cb638bd9523a58add"><code>f287a3b</code></a>
Merge pull request 1179 from GREsau/patch-1</li>
<li><a
href="https://github.com/serde-rs/json/commit/ec980b02774abbff12fd3e26b0a1582eb14dcef7"><code>ec980b0</code></a>
Release 1.0.126</li>
<li><a
href="https://github.com/serde-rs/json/commit/e6282b0c479947805a33c7f167b1d19dd4c7ad4f"><code>e6282b0</code></a>
Merge pull request <a
href="https://redirect.github.com/serde-rs/json/issues/1184">#1184</a>
from serde-rs/fastarithmetic</li>
<li><a
href="https://github.com/serde-rs/json/commit/ffc4a43453029cdc5603cfe3ef08414488fd45de"><code>ffc4a43</code></a>
Improve cfg names for fast arithmetic</li>
<li><a
href="https://github.com/serde-rs/json/commit/4b1048d0ecc4d326d6657531689513f182a4f850"><code>4b1048d</code></a>
Merge pull request <a
href="https://redirect.github.com/serde-rs/json/issues/1183">#1183</a>
from serde-rs/arithmetic</li>
<li>Additional commits viewable in <a
href="https://github.com/serde-rs/json/compare/1.0.125...1.0.128">compare
view</a></li>
</ul>
</details>
<br />

Updates `libc` from 0.2.158 to 0.2.159
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/rust-lang/libc/releases">libc's
releases</a>.</em></p>
<blockquote>
<h2>0.2.159</h2>
<h3>Added</h3>
<ul>
<li>Android: add more <code>AT_*</code> constants in <a
href="https://redirect.github.com/rust-lang/libc/pull/3779">rust-lang/libc#3779</a></li>
<li>Apple: add missing <code>NOTE_*</code> constants in <a
href="https://redirect.github.com/rust-lang/libc/pull/3883">rust-lang/libc#3883</a></li>
<li>Hermit: add missing error numbers in <a
href="https://redirect.github.com/rust-lang/libc/pull/3858">rust-lang/libc#3858</a></li>
<li>Hurd: add <code>__timeval</code> for 64-bit support in <a
href="https://redirect.github.com/rust-lang/libc/pull/3786">rust-lang/libc#3786</a></li>
<li>Linux: add <code>epoll_pwait2</code> in <a
href="https://redirect.github.com/rust-lang/libc/pull/3868">rust-lang/libc#3868</a></li>
<li>Linux: add <code>mq_notify</code> in <a
href="https://redirect.github.com/rust-lang/libc/pull/3849">rust-lang/libc#3849</a></li>
<li>Linux: add missing <code>NFT_CT_*</code> constants in <a
href="https://redirect.github.com/rust-lang/libc/pull/3844">rust-lang/libc#3844</a></li>
<li>Linux: add the <code>fchmodat2</code> syscall in <a
href="https://redirect.github.com/rust-lang/libc/pull/3588">rust-lang/libc#3588</a></li>
<li>Linux: add the <code>mseal</code> syscall in <a
href="https://redirect.github.com/rust-lang/libc/pull/3798">rust-lang/libc#3798</a></li>
<li>OpenBSD: add <code>sendmmsg</code> and <code>recvmmsg</code> in <a
href="https://redirect.github.com/rust-lang/libc/pull/3831">rust-lang/libc#3831</a></li>
<li>Unix: add <code>IN6ADDR_ANY_INIT</code> and
<code>IN6ADDR_LOOPBACK_INIT</code> in <a
href="https://redirect.github.com/rust-lang/libc/pull/3693">rust-lang/libc#3693</a></li>
<li>VxWorks: add <code>S_ISVTX</code> in <a
href="https://redirect.github.com/rust-lang/libc/pull/3768">rust-lang/libc#3768</a></li>
<li>VxWorks: add <code>vxCpuLib</code> and <code>taskLib</code>
functions <a
href="https://redirect.github.com/rust-lang/libc/pull/3861">rust-lang/libc#3861</a></li>
<li>WASIp2: add definitions for <code>std::net</code> support in <a
href="https://redirect.github.com/rust-lang/libc/pull/3892">rust-lang/libc#3892</a></li>
</ul>
<h3>Fixed</h3>
<ul>
<li>Correctly handle version checks when <code>clippy-driver</code> is
used <a
href="https://redirect.github.com/rust-lang/libc/pull/3893">rust-lang/libc#3893</a></li>
</ul>
<h3>Changed</h3>
<ul>
<li>EspIdf: change signal constants to c_int in <a
href="https://redirect.github.com/rust-lang/libc/pull/3895">rust-lang/libc#3895</a></li>
<li>HorizonOS: update network definitions in <a
href="https://redirect.github.com/rust-lang/libc/pull/3863">rust-lang/libc#3863</a></li>
<li>Linux: combine <code>ioctl</code> APIs in <a
href="https://redirect.github.com/rust-lang/libc/pull/3722">rust-lang/libc#3722</a></li>
<li>WASI: enable CI testing in <a
href="https://redirect.github.com/rust-lang/libc/pull/3869">rust-lang/libc#3869</a></li>
<li>WASIp2: enable CI testing in <a
href="https://redirect.github.com/rust-lang/libc/pull/3870">rust-lang/libc#3870</a></li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/rust-lang/libc/blob/0.2.159/CHANGELOG.md">libc's
changelog</a>.</em></p>
<blockquote>
<h2><a
href="https://github.com/rust-lang/libc/compare/0.2.158...0.2.159">0.2.159</a>
- 2024-09-24</h2>
<h3>Added</h3>
<ul>
<li>Android: add more <code>AT_*</code> constants in <a
href="https://redirect.github.com/rust-lang/libc/pull/3779">rust-lang/libc#3779</a></li>
<li>Apple: add missing <code>NOTE_*</code> constants in <a
href="https://redirect.github.com/rust-lang/libc/pull/3883">rust-lang/libc#3883</a></li>
<li>Hermit: add missing error numbers in <a
href="https://redirect.github.com/rust-lang/libc/pull/3858">rust-lang/libc#3858</a></li>
<li>Hurd: add <code>__timeval</code> for 64-bit support in <a
href="https://redirect.github.com/rust-lang/libc/pull/3786">rust-lang/libc#3786</a></li>
<li>Linux: add <code>epoll_pwait2</code> in <a
href="https://redirect.github.com/rust-lang/libc/pull/3868">rust-lang/libc#3868</a></li>
<li>Linux: add <code>mq_notify</code> in <a
href="https://redirect.github.com/rust-lang/libc/pull/3849">rust-lang/libc#3849</a></li>
<li>Linux: add missing <code>NFT_CT_*</code> constants in <a
href="https://redirect.github.com/rust-lang/libc/pull/3844">rust-lang/libc#3844</a></li>
<li>Linux: add the <code>fchmodat2</code> syscall in <a
href="https://redirect.github.com/rust-lang/libc/pull/3588">rust-lang/libc#3588</a></li>
<li>Linux: add the <code>mseal</code> syscall in <a
href="https://redirect.github.com/rust-lang/libc/pull/3798">rust-lang/libc#3798</a></li>
<li>OpenBSD: add <code>sendmmsg</code> and <code>recvmmsg</code> in <a
href="https://redirect.github.com/rust-lang/libc/pull/3831">rust-lang/libc#3831</a></li>
<li>Unix: add <code>IN6ADDR_ANY_INIT</code> and
<code>IN6ADDR_LOOPBACK_INIT</code> in <a
href="https://redirect.github.com/rust-lang/libc/pull/3693">rust-lang/libc#3693</a></li>
<li>VxWorks: add <code>S_ISVTX</code> in <a
href="https://redirect.github.com/rust-lang/libc/pull/3768">rust-lang/libc#3768</a></li>
<li>VxWorks: add <code>vxCpuLib</code> and <code>taskLib</code>
functions <a
href="https://redirect.github.com/rust-lang/libc/pull/3861">rust-lang/libc#3861</a></li>
<li>WASIp2: add definitions for <code>std::net</code> support in <a
href="https://redirect.github.com/rust-lang/libc/pull/3892">rust-lang/libc#3892</a></li>
</ul>
<h3>Fixed</h3>
<ul>
<li>Correctly handle version checks when <code>clippy-driver</code> is
used <a
href="https://redirect.github.com/rust-lang/libc/pull/3893">rust-lang/libc#3893</a></li>
</ul>
<h3>Changed</h3>
<ul>
<li>EspIdf: change signal constants to c_int in <a
href="https://redirect.github.com/rust-lang/libc/pull/3895">rust-lang/libc#3895</a></li>
<li>HorizonOS: update network definitions in <a
href="https://redirect.github.com/rust-lang/libc/pull/3863">rust-lang/libc#3863</a></li>
<li>Linux: combine <code>ioctl</code> APIs in <a
href="https://redirect.github.com/rust-lang/libc/pull/3722">rust-lang/libc#3722</a></li>
<li>WASI: enable CI testing in <a
href="https://redirect.github.com/rust-lang/libc/pull/3869">rust-lang/libc#3869</a></li>
<li>WASIp2: enable CI testing in <a
href="https://redirect.github.com/rust-lang/libc/pull/3870">rust-lang/libc#3870</a></li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/rust-lang/libc/commit/7373a1abe57da20efae9fd2ca891d7b905c19e03"><code>7373a1a</code></a>
chore: release (<a
href="https://redirect.github.com/rust-lang/libc/issues/3862">#3862</a>)</li>
<li><a
href="https://github.com/rust-lang/libc/commit/48668be46be0dbc2d3dfcf942778c37a07d38a87"><code>48668be</code></a>
Merge pull request <a
href="https://redirect.github.com/rust-lang/libc/issues/3931">#3931</a>
from tgross35/backport-remove-tmp-file</li>
<li><a
href="https://github.com/rust-lang/libc/commit/28bb64b1fe678ca090f9af08d786949d53285940"><code>28bb64b</code></a>
Remove temporary file that was added by accident</li>
<li><a
href="https://github.com/rust-lang/libc/commit/a515d07dd95093bc1c3a7b716f0936d2d0b989db"><code>a515d07</code></a>
Merge pull request <a
href="https://redirect.github.com/rust-lang/libc/issues/3904">#3904</a>
from tgross35/backport-buildrs-fix</li>
<li><a
href="https://github.com/rust-lang/libc/commit/abcb8f87986c8f57a28c4f67d7939272f4f8cbad"><code>abcb8f8</code></a>
Simplify the RUSTC_WRAPPER check</li>
<li><a
href="https://github.com/rust-lang/libc/commit/507833559bd0bfe04b5139c1607c3dc3208174f5"><code>5078335</code></a>
Fix rustc version when <code>clippy-driver</code> is used</li>
<li><a
href="https://github.com/rust-lang/libc/commit/57a7d465fa69c85bb96c98c84762ada90ad02077"><code>57a7d46</code></a>
Merge pull request <a
href="https://redirect.github.com/rust-lang/libc/issues/3902">#3902</a>
from tgross35/backport-horizon-network</li>
<li><a
href="https://github.com/rust-lang/libc/commit/a3e88691a9a1a41867b0692b67cc50f5b1d39eb2"><code>a3e8869</code></a>
Revise network definitions for HorizonOS</li>
<li><a
href="https://github.com/rust-lang/libc/commit/fdd3a268960639b4714c2829976b87b374fa0f9f"><code>fdd3a26</code></a>
Merge pull request <a
href="https://redirect.github.com/rust-lang/libc/issues/3900">#3900</a>
from tgross35/espid-cherry-pick</li>
<li><a
href="https://github.com/rust-lang/libc/commit/35060e8eb0bd7a64722fc7ff8ef475f6b15384a9"><code>35060e8</code></a>
Merge pull request <a
href="https://redirect.github.com/rust-lang/libc/issues/3901">#3901</a>
from tgross35/backport-epoll_pwait2</li>
<li>Additional commits viewable in <a
href="https://github.com/rust-lang/libc/compare/0.2.158...0.2.159">compare
view</a></li>
</ul>
</details>
<br />

Updates `is_executable` from 1.0.1 to 1.0.3
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/fitzgen/is_executable/commit/cfe991224073cdab13ff6a8133d1cacd8182e21a"><code>cfe9912</code></a>
Bump to version 1.0.3</li>
<li><a
href="https://github.com/fitzgen/is_executable/commit/d6fcf2f526963b4e12ab063fca255bbe75bca178"><code>d6fcf2f</code></a>
Remove old test about README.md being in sync with module docs</li>
<li><a
href="https://github.com/fitzgen/is_executable/commit/95f27a6d3dae185ee1332728e959e4ff7c6890d9"><code>95f27a6</code></a>
Remove old CI</li>
<li><a
href="https://github.com/fitzgen/is_executable/commit/e70c103b81b5e5e7f25d7973605181cc622f2578"><code>e70c103</code></a>
Update badges in README</li>
<li><a
href="https://github.com/fitzgen/is_executable/commit/61d2e9ba8cf05a1410ca69fd157ca234c65a8af7"><code>61d2e9b</code></a>
Add github actions</li>
<li><a
href="https://github.com/fitzgen/is_executable/commit/001b334761623dcc0182dded9f1e3b949f7cf79a"><code>001b334</code></a>
Bump to version 1.0.2</li>
<li><a
href="https://github.com/fitzgen/is_executable/commit/fab168c19690b6247f9e983fd0e0d0d8599c3bef"><code>fab168c</code></a>
Merge pull request <a
href="https://redirect.github.com/fitzgen/is_executable/issues/14">#14</a>
from lucieleblanc/master</li>
<li><a
href="https://github.com/fitzgen/is_executable/commit/82f9c68782656eb9ec2fcad978fce3c9e60a3072"><code>82f9c68</code></a>
replace is_file() --&gt; exists() because symlinks are ok</li>
<li><a
href="https://github.com/fitzgen/is_executable/commit/441c1c7df30116f3a4a1b8a999e457816d77cf7a"><code>441c1c7</code></a>
add file existence check before reading extension</li>
<li><a
href="https://github.com/fitzgen/is_executable/commit/ea10f6b2f8456bdcc5300027c5605ff6089b371c"><code>ea10f6b</code></a>
Merge pull request <a
href="https://redirect.github.com/fitzgen/is_executable/issues/11">#11</a>
from davide125/exclude</li>
<li>Additional commits viewable in <a
href="https://github.com/fitzgen/is_executable/compare/v1.0.1...v1.0.3">compare
view</a></li>
</ul>
</details>
<br />

Updates `derive-new` from 0.6.0 to 0.7.0
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/nrc/derive-new/commit/6626d8f566ee523ead38fe789b171f1b46993e49"><code>6626d8f</code></a>
Update compiletest</li>
<li><a
href="https://github.com/nrc/derive-new/commit/1e024ddf396e06690c0b39baa5a4f996ae88404b"><code>1e024dd</code></a>
cargo update, etc.</li>
<li><a
href="https://github.com/nrc/derive-new/commit/3389ef278665f8e0be249b6f4bd3cbfc727160a8"><code>3389ef2</code></a>
Fix doc tests</li>
<li><a
href="https://github.com/nrc/derive-new/commit/bd4486d85de87d5a543a7604f4e8f136c8b0e973"><code>bd4486d</code></a>
implement <code>into</code> and <code>into_iter</code></li>
<li><a
href="https://github.com/nrc/derive-new/commit/a9230ace30ffc43836e0e49e42e1203c7f079732"><code>a9230ac</code></a>
fix tests</li>
<li><a
href="https://github.com/nrc/derive-new/commit/77cb8287d22ca3aff803577a49321886895a43ee"><code>77cb828</code></a>
Merge pull request <a
href="https://redirect.github.com/nrc/derive-new/issues/67">#67</a> from
Paragit-Solutions/implement-new-method-visibility</li>
<li><a
href="https://github.com/nrc/derive-new/commit/cacbadabd235a83e978fcd52d9ed83dffff43abd"><code>cacbada</code></a>
Merge pull request <a
href="https://redirect.github.com/nrc/derive-new/issues/66">#66</a> from
shellixyz/patch-1</li>
<li><a
href="https://github.com/nrc/derive-new/commit/d11f63160c0829dbf06a1aab30f431c9b58ecc37"><code>d11f631</code></a>
Add documentation</li>
<li><a
href="https://github.com/nrc/derive-new/commit/3311408f8fc4844e857708bf2a222c939ac1066d"><code>3311408</code></a>
Add visibility to test struct to test compilation and correct macro
expansion</li>
<li><a
href="https://github.com/nrc/derive-new/commit/61853b79702bae6d0ffa343718310f20463687a4"><code>61853b7</code></a>
Make the default visibility public</li>
<li>Additional commits viewable in <a
href="https://github.com/nrc/derive-new/compare/0.6.0...0.7">compare
view</a></li>
</ul>
</details>
<br />

Updates `async-trait` from 0.1.81 to 0.1.83
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/dtolnay/async-trait/releases">async-trait's
releases</a>.</em></p>
<blockquote>
<h2>0.1.83</h2>
<ul>
<li>Prevent needless_arbitrary_self_type lint being produced in
generated code (<a
href="https://redirect.github.com/dtolnay/async-trait/issues/278">#278</a>)</li>
</ul>
<h2>0.1.82</h2>
<ul>
<li>Prevent elided_named_lifetimes lint being produced in generated code
(<a
href="https://redirect.github.com/dtolnay/async-trait/issues/276">#276</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/dtolnay/async-trait/commit/e6b4d471c64156338fb87386b7a7ad8543c3a205"><code>e6b4d47</code></a>
Release 0.1.83</li>
<li><a
href="https://github.com/dtolnay/async-trait/commit/bfe8d617660237b27eee620181586a16ff2f6a25"><code>bfe8d61</code></a>
Merge pull request <a
href="https://redirect.github.com/dtolnay/async-trait/issues/278">#278</a>
from dtolnay/arbself</li>
<li><a
href="https://github.com/dtolnay/async-trait/commit/7bd974b3a4db2c3ab321de2976d09d3ea2b82348"><code>7bd974b</code></a>
Ignore needless_arbitrary_self_type clippy lint in generated code</li>
<li><a
href="https://github.com/dtolnay/async-trait/commit/b53b4e755402ef91d2104d40b8f303ad0c56d2f9"><code>b53b4e7</code></a>
Add regression test for issue 277</li>
<li><a
href="https://github.com/dtolnay/async-trait/commit/f8e5bb43181450a17068f160e8a51d410ede1705"><code>f8e5bb4</code></a>
Release 0.1.82</li>
<li><a
href="https://github.com/dtolnay/async-trait/commit/8fbf118de30d3d30416d5a2dff496513433171c4"><code>8fbf118</code></a>
Merge pull request <a
href="https://redirect.github.com/dtolnay/async-trait/issues/276">#276</a>
from dtolnay/elidednamed</li>
<li><a
href="https://github.com/dtolnay/async-trait/commit/6fa246a0546fc678c4812ccb59306b6b264c27a0"><code>6fa246a</code></a>
Ignore nightly's new elided_named_lifetimes lint in generated code</li>
<li><a
href="https://github.com/dtolnay/async-trait/commit/d542a0dd74f366995e5924edc2d6ac7661e5d9ca"><code>d542a0d</code></a>
Upload CI Cargo.lock for reproducing failures</li>
<li><a
href="https://github.com/dtolnay/async-trait/commit/8828c35a86442dd05b6ac3aab5f0bac769e246f0"><code>8828c35</code></a>
Sort dependency features in Cargo.toml</li>
<li><a
href="https://github.com/dtolnay/async-trait/commit/ba9793af3f3936e2373ab4c482bf49ac67009df8"><code>ba9793a</code></a>
Update ui test suite to nightly-2024-08-11</li>
<li>Additional commits viewable in <a
href="https://github.com/dtolnay/async-trait/compare/0.1.81...0.1.83">compare
view</a></li>
</ul>
</details>
<br />

Updates `autocfg` from 1.3.0 to 1.4.0
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/cuviper/autocfg/commit/d07df6624a4573803a29397c0ccf636aa0b3d153"><code>d07df66</code></a>
Merge pull request <a
href="https://redirect.github.com/cuviper/autocfg/issues/73">#73</a>
from cuviper/release-1.4.0</li>
<li><a
href="https://github.com/cuviper/autocfg/commit/f6066f016441c2a25e0fa0d9d0521b1a79b0e14c"><code>f6066f0</code></a>
Release 1.4.0</li>
<li><a
href="https://github.com/cuviper/autocfg/commit/8af60eca650aed24db3042dbd0a2e1f61016b95e"><code>8af60ec</code></a>
Merge pull request <a
href="https://redirect.github.com/cuviper/autocfg/issues/70">#70</a>
from Techcable/feature/rustc-check-cfg</li>
<li><a
href="https://github.com/cuviper/autocfg/commit/52a995b6723ae015fbed7312d56803492f01e10a"><code>52a995b</code></a>
Apply suggestions from code review</li>
<li><a
href="https://github.com/cuviper/autocfg/commit/a8703c163f5aa66819f515356530420955374386"><code>a8703c1</code></a>
Attempt rust 1.0 compat for ci/verify-check-cfg</li>
<li><a
href="https://github.com/cuviper/autocfg/commit/ac78be804dbcf9e616d69a93c0ba918adc6a003a"><code>ac78be8</code></a>
Add ci test crate for check-cfg</li>
<li><a
href="https://github.com/cuviper/autocfg/commit/0b4a7617ad0e6ccf271dac7ab920a731195fab32"><code>0b4a761</code></a>
Have emit_has methods delegate wherever possible</li>
<li><a
href="https://github.com/cuviper/autocfg/commit/546f7c6c1c0e25b2dca136675934348118f603d2"><code>546f7c6</code></a>
Fix minor doc issues</li>
<li><a
href="https://github.com/cuviper/autocfg/commit/e0e0f18f54fb60f9c42a01c6571edcdab4542db6"><code>e0e0f18</code></a>
Automatically emit <code>rustc-check-cfg</code> directives for
AutoCfg</li>
<li><a
href="https://github.com/cuviper/autocfg/commit/1953a17319e667dd2ead9a4eae0645ed939eef24"><code>1953a17</code></a>
Merge pull request <a
href="https://redirect.github.com/cuviper/autocfg/issues/72">#72</a>
from cuviper/pretty-way</li>
<li>Additional commits viewable in <a
href="https://github.com/cuviper/autocfg/compare/1.3.0...1.4.0">compare
view</a></li>
</ul>
</details>
<br />

Updates `backtrace` from 0.3.73 to 0.3.74
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/rust-lang/backtrace-rs/releases">backtrace's
releases</a>.</em></p>
<blockquote>
<h2>0.3.74</h2>
<h2>What's Changed</h2>
<ul>
<li>QNX Neutrino 7.0 support, thanks to <a
href="https://github.com/nyurik"><code>@​nyurik</code></a> in <a
href="https://redirect.github.com/rust-lang/backtrace-rs/pull/648">rust-lang/backtrace-rs#648</a></li>
<li>Cleaned up our Android support. This should massively improve
backtraces for ones with the API level sufficient to ship with
libunwind, etc. Unfortunately, it comes at the cost of dropping support
for older ones! Thanks to <a
href="https://github.com/fengys"><code>@​fengys</code></a> in <a
href="https://redirect.github.com/rust-lang/backtrace-rs/pull/656">rust-lang/backtrace-rs#656</a></li>
<li>Made PrintFmt, which was using the
<code>Enum::__NonExhaustiveVariant</code> pattern, use
<code>#[non_exhaustive]</code> for real. Don't @ me if you were matching
on that! Thanks to <a
href="https://github.com/nyurik"><code>@​nyurik</code></a> in <a
href="https://redirect.github.com/rust-lang/backtrace-rs/pull/651">rust-lang/backtrace-rs#651</a></li>
<li>Massively cleaned up the windows code! We moved from winapi to
windows-sys with windows-targets thanks to <a
href="https://github.com/CraftSpider"><code>@​CraftSpider</code></a> and
<a href="https://github.com/ChrisDenton"><code>@​ChrisDenton</code></a>
in
<ul>
<li>Don't cast HANDLE to usize and back by <a
href="https://github.com/CraftSpider"><code>@​CraftSpider</code></a> in
<a
href="https://redirect.github.com/rust-lang/backtrace-rs/pull/635">rust-lang/backtrace-rs#635</a></li>
<li>Switch from <code>winapi</code> to <code>windows-sys</code> by <a
href="https://github.com/CraftSpider"><code>@​CraftSpider</code></a> in
<a
href="https://redirect.github.com/rust-lang/backtrace-rs/pull/641">rust-lang/backtrace-rs#641</a></li>
<li>Update windows bindings and use windows-targets by <a
href="https://github.com/ChrisDenton"><code>@​ChrisDenton</code></a> in
<a
href="https://redirect.github.com/rust-lang/backtrace-rs/pull/653">rust-lang/backtrace-rs#653</a></li>
</ul>
</li>
<li>A bunch of updated dependencies. Thanks <a
href="https://github.com/djc"><code>@​djc</code></a> and <a
href="https://github.com/khuey"><code>@​khuey</code></a>!</li>
<li>Sorry if you were testing this code in miri! It started yelling
about sussy casts. A lot. We did a bunch of internal cleanups that
should make it quiet down, thanks to <a
href="https://github.com/workingjubilee"><code>@​workingjubilee</code></a>
in <a
href="https://redirect.github.com/rust-lang/backtrace-rs/pull/641">rust-lang/backtrace-rs#641</a></li>
<li>Uhhh we had to tweak <code>dl_iterate_phdr</code> in <a
href="https://redirect.github.com/rust-lang/backtrace-rs/pull/660">rust-lang/backtrace-rs#660</a>
after Android revealed it was... kind of unsound actually and not doing
things like checking for null pointers before making slices! WHOOPS!
Thanks to <a
href="https://github.com/saethlin"><code>@​saethlin</code></a> for
implementing detection for precisely that in rustc! It's really hard to
find soundness issues in inherited codebases like this one...</li>
</ul>
<h2>New Contributors</h2>
<ul>
<li><a
href="https://github.com/CraftSpider"><code>@​CraftSpider</code></a>
made their first contribution in <a
href="https://redirect.github.com/rust-lang/backtrace-rs/pull/635">rust-lang/backtrace-rs#635</a></li>
<li><a
href="https://github.com/fengys1996"><code>@​fengys1996</code></a> made
their first contribution in <a
href="https://redirect.github.com/rust-lang/backtrace-rs/pull/656">rust-lang/backtrace-rs#656</a></li>
<li><a href="https://github.com/djc"><code>@​djc</code></a> made their
first contribution in <a
href="https://redirect.github.com/rust-lang/backtrace-rs/pull/657">rust-lang/backtrace-rs#657</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/rust-lang/backtrace-rs/compare/0.3.73...0.3.74">https://github.com/rust-lang/backtrace-rs/compare/0.3.73...0.3.74</a></p>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/rust-lang/backtrace-rs/commit/38d49aa0395c50047ab26e418a0cb30d9955fb64"><code>38d49aa</code></a>
Merge pull request <a
href="https://redirect.github.com/rust-lang/backtrace-rs/issues/658">#658</a>
from workingjubilee/cut-0.3.74</li>
<li><a
href="https://github.com/rust-lang/backtrace-rs/commit/c1749ce9a8cc0105b9d224e66f9ce4632133c1ea"><code>c1749ce</code></a>
Cut backtrace 0.3.74</li>
<li><a
href="https://github.com/rust-lang/backtrace-rs/commit/230570f2dac80a601f5c0b30da00cc9480bd35eb"><code>230570f</code></a>
Merge pull request <a
href="https://redirect.github.com/rust-lang/backtrace-rs/issues/660">#660</a>
from workingjubilee/dont-unsoundly-iterate-phdr</li>
<li><a
href="https://github.com/rust-lang/backtrace-rs/commit/153f510013e9d486103dac7994d7f75205af397a"><code>153f510</code></a>
Do not destructure maybe-uninit fields</li>
<li><a
href="https://github.com/rust-lang/backtrace-rs/commit/38589464ed3a901794f5858ccbd7f996f6712f64"><code>3858946</code></a>
Revise dl_iterate_phdr callback to be sound-ish</li>
<li><a
href="https://github.com/rust-lang/backtrace-rs/commit/7d062c63749a4c07d9307c96b6cd9485ccd1ad18"><code>7d062c6</code></a><code>rust-lang/backtrace-rs#653</code></li>
<li><a
href="https://github.com/rust-lang/backtrace-rs/commit/fc37b22dc8a384d93f6b7b4817266eec6433875e"><code>fc37b22</code></a><code>rust-lang/backtrace-rs#657</code></li>
<li><a
href="https://github.com/rust-lang/backtrace-rs/commit/600beaa5074be0f40279584450d995c319061ce8"><code>600beaa</code></a><code>rust-lang/backtrace-rs#648</code></li>
<li><a
href="https://github.com/rust-lang/backtrace-rs/commit/84b6c1d56f4bd1b4297187db863c2db6d436c1cf"><code>84b6c1d</code></a><code>rust-lang/backtrace-rs#652</code></li>
<li><a
href="https://github.com/rust-lang/backtrace-rs/commit/95c3bacab9364620864208b651e77a524900480d"><code>95c3bac</code></a>
Make enum
<code>print::PrintFmt</code><code>rust-lang/backtrace-rs#651</code></li>
<li>Additional commits viewable in <a
href="https://github.com/rust-lang/backtrace-rs/compare/0.3.73...0.3.74">compare
view</a></li>
</ul>
</details>
<br />

Updates `bytes` from 1.7.1 to 1.7.2
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/tokio-rs/bytes/releases">bytes's
releases</a>.</em></p>
<blockquote>
<h2>Bytes 1.7.2</h2>
<h1>1.7.2 (September 17, 2024)</h1>
<h3>Fixed</h3>
<ul>
<li>Fix default impl of <code>Buf::{get_int, get_int_le}</code> (<a
href="https://redirect.github.com/tokio-rs/bytes/issues/732">#732</a>)</li>
</ul>
<h3>Documented</h3>
<ul>
<li>Fix double spaces in comments and doc comments (<a
href="https://redirect.github.com/tokio-rs/bytes/issues/731">#731</a>)</li>
</ul>
<h3>Internal changes</h3>
<ul>
<li>Ensure BytesMut::advance reduces capacity (<a
href="https://redirect.github.com/tokio-rs/bytes/issues/728">#728</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/tokio-rs/bytes/blob/master/CHANGELOG.md">bytes's
changelog</a>.</em></p>
<blockquote>
<h1>1.7.2 (September 17, 2024)</h1>
<h3>Fixed</h3>
<ul>
<li>Fix default impl of <code>Buf::{get_int, get_int_le}</code> (<a
href="https://redirect.github.com/tokio-rs/bytes/issues/732">#732</a>)</li>
</ul>
<h3>Documented</h3>
<ul>
<li>Fix double spaces in comments and doc comments (<a
href="https://redirect.github.com/tokio-rs/bytes/issues/731">#731</a>)</li>
</ul>
<h3>Internal changes</h3>
<ul>
<li>Ensure BytesMut::advance reduces capacity (<a
href="https://redirect.github.com/tokio-rs/bytes/issues/728">#728</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/tokio-rs/bytes/commit/d7c1d658d90c922eeee1dbc29bc6f6fd9a1a1a66"><code>d7c1d65</code></a>
chore: prepare bytes v1.7.2 (<a
href="https://redirect.github.com/tokio-rs/bytes/issues/736">#736</a>)</li>
<li><a
href="https://github.com/tokio-rs/bytes/commit/ac46ebdd464144cecd7463a96ca9eb347458ae94"><code>ac46ebd</code></a>
ci: update nightly to nightly-2024-09-15 (<a
href="https://redirect.github.com/tokio-rs/bytes/issues/734">#734</a>)</li>
<li><a
href="https://github.com/tokio-rs/bytes/commit/79fb85323cf4cf14d9b85f487b65fc147030cf4b"><code>79fb853</code></a>
fix: apply sign extension when decoding int (<a
href="https://redirect.github.com/tokio-rs/bytes/issues/732">#732</a>)</li>
<li><a
href="https://github.com/tokio-rs/bytes/commit/291df5acc94b82a48765e67eeb1c1a2074539e68"><code>291df5a</code></a>
Fix double spaces in comments and doc comments (<a
href="https://redirect.github.com/tokio-rs/bytes/issues/731">#731</a>)</li>
<li><a
href="https://github.com/tokio-rs/bytes/commit/ed7d5ff39e39c2802c0fa9e2fc308f6a3e0beda7"><code>ed7d5ff</code></a>
test: ensure BytesMut::advance reduces capacity (<a
href="https://redirect.github.com/tokio-rs/bytes/issues/728">#728</a>)</li>
<li>See full diff in <a
href="https://github.com/tokio-rs/bytes/compare/v1.7.1...v1.7.2">compare
view</a></li>
</ul>
</details>
<br />

Updates `cc` from 1.1.14 to 1.1.22
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/rust-lang/cc-rs/releases">cc's
releases</a>.</em></p>
<blockquote>
<h2>cc-v1.1.22</h2>
<h3>Other</h3>
<ul>
<li>Don't rerun if PATH changes (<a
href="https://redirect.github.com/rust-lang/cc-rs/pull/1215">#1215</a>)</li>
</ul>
<h2>cc-v1.1.21</h2>
<h3>Other</h3>
<ul>
<li>disable pic for targets that end in <code>-none</code> (<a
href="https://redirect.github.com/rust-lang/cc-rs/pull/1212">#1212</a>)</li>
</ul>
<h2>cc-v1.1.20</h2>
<h3>Other</h3>
<ul>
<li>Add buildcache as known Rust and C/C++ compiler wrapper (<a
href="https://redirect.github.com/rust-lang/cc-rs/pull/1209">#1209</a>)</li>
</ul>
<h2>cc-v1.1.19</h2>
<h3>Other</h3>
<ul>
<li>Add support arm64e-apple-darwin (<a
href="https://redirect.github.com/rust-lang/cc-rs/pull/1207">#1207</a>)</li>
</ul>
<h2>cc-v1.1.18</h2>
<h3>Other</h3>
<ul>
<li>Fixed unsoundness in <code>StderrForwarder::forward_available</code>
(<a
href="https://redirect.github.com/rust-lang/cc-rs/pull/1203">#1203</a>)</li>
</ul>
<h2>cc-v1.1.17</h2>
<h3>Fixed</h3>
<ul>
<li>fix finding toolchains when invoked by msbuild (<a
href="https://redirect.github.com/rust-lang/cc-rs/pull/1201">#1201</a>)</li>
</ul>
<h2>cc-v1.1.16</h2>
<h3>Other</h3>
<ul>
<li>Treat VxWorks wr-cc as a Gnu compiler (<a
href="https://redirect.github.com/rust-lang/cc-rs/pull/1198">#1198</a>)</li>
</ul>
<h2>cc-v1.1.15</h2>
<h3>Other</h3>
<ul>
<li>Add -mfloat-abi=hard as a default argument when using any
arm/thumb-none-eabihf target (<a
href="https://redirect.github.com/rust-lang/cc-rs/pull/1194">#1194</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/rust-lang/cc-rs/blob/main/CHANGELOG.md">cc's
changelog</a>.</em></p>
<blockquote>
<h2><a
href="https://github.com/rust-lang/cc-rs/compare/cc-v1.1.21...cc-v1.1.22">1.1.22</a>
- 2024-09-27</h2>
<h3>Other</h3>
<ul>
<li>Don't rerun if PATH changes (<a
href="https://redirect.github.com/rust-lang/cc-rs/pull/1215">#1215</a>)</li>
</ul>
<h2><a
href="https://github.com/rust-lang/cc-rs/compare/cc-v1.1.20...cc-v1.1.21">1.1.21</a>
- 2024-09-18</h2>
<h3>Other</h3>
<ul>
<li>disable pic for targets that end in <code>-none</code> (<a
href="https://redirect.github.com/rust-lang/cc-rs/pull/1212">#1212</a>)</li>
</ul>
<h2><a
href="https://github.com/rust-lang/cc-rs/compare/cc-v1.1.19...cc-v1.1.20">1.1.20</a>
- 2024-09-17</h2>
<h3>Other</h3>
<ul>
<li>Add buildcache as known Rust and C/C++ compiler wrapper (<a
href="https://redirect.github.com/rust-lang/cc-rs/pull/1209">#1209</a>)</li>
</ul>
<h2><a
href="https://github.com/rust-lang/cc-rs/compare/cc-v1.1.18...cc-v1.1.19">1.1.19</a>
- 2024-09-15</h2>
<h3>Other</h3>
<ul>
<li>Add support arm64e-apple-darwin (<a
href="https://redirect.github.com/rust-lang/cc-rs/pull/1207">#1207</a>)</li>
</ul>
<h2><a
href="https://github.com/rust-lang/cc-rs/compare/cc-v1.1.17...cc-v1.1.18">1.1.18</a>
- 2024-09-07</h2>
<h3>Other</h3>
<ul>
<li>Fixed unsoundness in <code>StderrForwarder::forward_available</code>
(<a
href="https://redirect.github.com/rust-lang/cc-rs/pull/1203">#1203</a>)</li>
</ul>
<h2><a
href="https://github.com/rust-lang/cc-rs/compare/cc-v1.1.16...cc-v1.1.17">1.1.17</a>
- 2024-09-06</h2>
<h3>Fixed</h3>
<ul>
<li>fix finding toolchains when invoked by msbuild (<a
href="https://redirect.github.com/rust-lang/cc-rs/pull/1201">#1201</a>)</li>
</ul>
<h2><a
href="https://github.com/rust-lang/cc-rs/compare/cc-v1.1.15...cc-v1.1.16">1.1.16</a>
- 2024-09-04</h2>
<h3>Other</h3>
<ul>
<li>Treat VxWorks wr-cc as a Gnu compiler (<a
href="https://redirect.github.com/rust-lang/cc-rs/pull/1198">#1198</a>)</li>
</ul>
<h2><a
href="https://github.com/rust-lang/cc-rs/compare/cc-v1.1.14...cc-v1.1.15">1.1.15</a>
- 2024-08-26</h2>
<h3>Other</h3>
<ul>
<li>Add -mfloat-abi=hard as a default argument when using any
arm/thumb-none-eabihf target (<a
href="https://redirect.github.com/rust-lang/cc-rs/pull/1194">#1194</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/rust-lang/cc-rs/commit/5f5e1c8c18b53aa1524f720ce21b5a7986a0bf6b"><code>5f5e1c8</code></a>
chore: release (<a
href="https://redirect.github.com/rust-lang/cc-rs/issues/1216">#1216</a>)</li>
<li><a
href="https://github.com/rust-lang/cc-rs/commit/71c672b4afa2f9b6e5046a963d3b5bc1f9ccd2f8"><code>71c672b</code></a>
Don't rerun if PATH changes (<a
href="https://redirect.github.com/rust-lang/cc-rs/issues/1215">#1215</a>)</li>
<li><a
href="https://github.com/rust-lang/cc-rs/commit/748b777e553af972fb0484ece2626beaa354e0a2"><code>748b777</code></a>
chore: release (<a
href="https://redirect.github.com/rust-lang/cc-rs/issues/1213">#1213</a>)</li>
<li><a
href="https://github.com/rust-lang/cc-rs/commit/270ec653371a12498c3a338fb8b4a5d35e8388c6"><code>270ec65</code></a>
disable pic for targets that end in <code>-none</code> (<a
href="https://redirect.github.com/rust-lang/cc-rs/issues/1212">#1212</a>)</li>
<li><a
href="https://github.com/rust-lang/cc-rs/commit/92a5e28c084aefc101d2f71f236614d9fcaa1f9e"><code>92a5e28</code></a>
chore: release (<a
href="https://redirect.github.com/rust-lang/cc-rs/issues/1210">#1210</a>)</li>
<li><a
href="https://github.com/rust-lang/cc-rs/commit/dab5d7adb4c090ac9d8650e7d97897a711ac7a14"><code>dab5d7a</code></a>
Add buildcache as known Rust and C/C++ compiler wrapper (<a
href="https://redirect.github.com/rust-lang/cc-rs/issues/1209">#1209</a>)</li>
<li><a
href="https://github.com/rust-lang/cc-rs/commit/c0b3eae28300fc8b36eb3a0b519ef4083f1a129e"><code>c0b3eae</code></a>
chore: release (<a
href="https://redirect.github.com/rust-lang/cc-rs/issues/1208">#1208</a>)</li>
<li><a
href="https://github.com/rust-lang/cc-rs/commit/278a606afb79b00cfe7a1372dbaa3529ecce3dc4"><code>278a606</code></a>
Add support arm64e-apple-darwin (<a
href="https://redirect.github.com/rust-lang/cc-rs/issues/1207">#1207</a>)</li>
<li><a
href="https://github.com/rust-lang/cc-rs/commit/668facdbbcade9ebfb48c8ea0b658fc2688c4e5c"><code>668facd</code></a>
chore: release (<a
href="https://redirect.github.com/rust-lang/cc-rs/issues/1204">#1204</a>)</li>
<li><a
href="https://github.com/rust-lang/cc-rs/commit/5e161c6f4452fe63985bdfc78462ceda94c99805"><code>5e161c6</code></a>
Fixed unsoundness in <code>StderrForwarder::forward_available</code> (<a
href="https://redirect.github.com/rust-lang/cc-rs/issues/1203">#1203</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/rust-lang/cc-rs/compare/cc-v1.1.14...cc-v1.1.22">compare
view</a></li>
</ul>
</details>
<br />

Updates `clap_builder` from 4.5.15 to 4.5.18
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/clap-rs/clap/releases">clap_builder's
releases</a>.</em></p>
<blockquote>
<h2>v4.5.18</h2>
<h2>[4.5.18] - 2024-09-20</h2>
<h3>Features</h3>
<ul>
<li><em>(builder)</em> Expose <code>Arg::get_display_order</code> and
<code>Command::get_display_order</code></li>
</ul>
<h2>v4.5.17</h2>
<h2>[4.5.17] - 2024-09-04</h2>
<h3>Fixes</h3>
<ul>
<li><em>(help)</em> Style required argument groups</li>
<li><em>(derive)</em> Improve error messages when unsupported fields are
used</li>
</ul>
<h2>v4.5.16</h2>
<h2>[4.5.16] - 2024-08-15</h2>
<h3>Fixes</h3>
<ul>
<li><em>(derive)</em> Improve error messages when <code>derive</code>
feature is missing</li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/clap-rs/clap/blob/master/CHANGELOG.md">clap_builder's
changelog</a>.</em></p>
<blockquote>
<h2>[4.5.18] - 2024-09-20</h2>
<h3>Features</h3>
<ul>
<li><em>(builder)</em> Expose <code>Arg::get_display_order</code> and
<code>Command::get_display_order</code></li>
</ul>
<h2>[4.5.17] - 2024-09-04</h2>
<h3>Fixes</h3>
<ul>
<li><em>(help)</em> Style required argument groups</li>
<li><em>(derive)</em> Improve error messages when unsupported fields are
used</li>
</ul>
<h2>[4.5.16] - 2024-08-15</h2>
<h3>Fixes</h3>
<ul>
<li><em>(derive)</em> Improve error messages when <code>derive</code>
feature is missing</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/clap-rs/clap/commit/0d142f6c04a702b791d2dfec8327661ba1b6d16c"><code>0d142f6</code></a>
chore: Release</li>
<li><a
href="https://github.com/clap-rs/clap/commit/0facf1f370e7966a4d97bce56d1d10ca4c80d0ae"><code>0facf1f</code></a>
docs: Update changelog</li>
<li><a
href="https://github.com/clap-rs/clap/commit/ee6af99c6c5e239c0f2c92f9d1baf8aa3bb4af90"><code>ee6af99</code></a>
Merge pull request <a
href="https://redirect.github.com/clap-rs/clap/issues/5743">#5743</a>
from epage/sort</li>
<li><a
href="https://github.com/clap-rs/clap/commit/232ee106615e997f0841bb3de97eed126b929fe3"><code>232ee10</code></a>
fix(complete): Use existing display order for Arg/Command</li>
<li><a
href="https://github.com/clap-rs/clap/commit/c6b5d627a0c17527630e4086a4fe83589365d1f0"><code>c6b5d62</code></a>
feat(builder): Expose get_display_order</li>
<li><a
href="https://github.com/clap-rs/clap/commit/67d9fef9cee8f1b297aed73e6d95f78744b43a27"><code>67d9fef</code></a>
feat(complete): Give control over display order</li>
<li><a
href="https://github.com/clap-rs/clap/commit/59a61e188fbb9999db52f567e3951d3720204084"><code>59a61e1</code></a>
refactor(complete): Pull out common candidate code</li>
<li><a
href="https://github.com/clap-rs/clap/commit/144879194081212046d5566572bfa15ea9bcca35"><code>1448791</code></a>
fix(complete): Specify tags for built-in candiates</li>
<li><a
href="https://github.com/clap-rs/clap/commit/a4aa5dffdf46a2975f2b2d51ce7e618e19250ead"><code>a4aa5df</code></a>
feat(complete): Group by tag</li>
<li><a
href="https://github.com/clap-rs/clap/commit/a126149a809f01586ccb6d9299eb2fc2c87d8fe0"><code>a126149</code></a>
refactor(complete): Remove redundant dedup</li>
<li>Additional commits viewable in <a
href="https://github.com/clap-rs/clap/compare/v4.5.15...v4.5.18">compare
view</a></li>
</ul>
</details>
<br />

Updates `clap_derive` from 4.5.13 to 4.5.18
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/clap-rs/clap/releases">clap_derive's
releases</a>.</em></p>
<blockquote>
<h2>v4.5.18</h2>
<h2>[4.5.18] - 2024-09-20</h2>
<h3>Features</h3>
<ul>
<li><em>(builder)</em> Expose <code>Arg::get_display_order</code> and
<code>Command::get_display_order</code></li>
</ul>
<h2>v4.5.17</h2>
<h2>[4.5.17] - 2024-09-04</h2>
<h3>Fixes</h3>
<ul>
<li><em>(help)</em> Style required argument groups</li>
<li><em>(derive)</em> Improve error messages when unsupported fields are
used</li>
</ul>
<h2>v4.5.16</h2>
<h2>[4.5.16] - 2024-08-15</h2>
<h3>Fixes</h3>
<ul>
<li><em>(derive)</em> Improve error messages when <code>derive</code>
feature is missing</li>
</ul>
<h2>v4.5.15</h2>
<h2>[4.5.15] - 2024-08-10</h2>
<h3>Compatiblity</h3>
<ul>
<li><em>(unstable-ext)</em> <code>Arg::remove</code> changed return
types</li>
</ul>
<h3>Fixes</h3>
<ul>
<li><em>(unstable-ext)</em> Make <code>Arg::remove</code> return the
removed item</li>
</ul>
<h2>v4.5.14</h2>
<h2>[4.5.14] - 2024-08-08</h2>
<h3>Features</h3>
<ul>
<li><em>(unstable-ext)</em> Added <code>Arg::add</code> for attaching
arbitrary state, like completion hints, to <code>Arg</code> without
<code>Arg</code> knowing about it</li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/clap-rs/clap/blob/master/CHANGELOG.md">clap_derive's
changelog</a>.</em></p>
<blockquote>
<h2>[4.5.18] - 2024-09-20</h2>
<h3>Features</h3>
<ul>
<li><em>(builder)</em> Expose <code>Arg::get_display_order</code> and
<code>Command::get_display_order</code></li>
</ul>
<h2>[4.5.17] - 2024-09-04</h2>
<h3>Fixes</h3>
<ul>
<li><em>(help)</em> Style required argument groups</li>
<li><em>(derive)</em> Improve error messages when unsupported fields are
used</li>
</ul>
<h2>[4.5.16] - 2024-08-15</h2>
<h3>Fixes</h3>
<ul>
<li><em>(derive)</em> Improve error messages when <code>derive</code>
feature is missing</li>
</ul>
<h2>[4.5.15] - 2024-08-10</h2>
<h3>Compatiblity</h3>
<ul>
<li><em>(unstable-ext)</em> <code>Arg::remove</code> changed return
types</li>
</ul>
<h3>Fixes</h3>
<ul>
<li><em>(unstable-ext)</em> Make <code>Arg::remove</code> return the
removed item</li>
</ul>
<h2>[4.5.14] - 2024-08-08</h2>
<h3>Features</h3>
<ul>
<li><em>(unstable-ext)</em> Added <code>Arg::add</code> for attaching
arbitrary state, like completion hints, to <code>Arg</code> without
<code>Arg</code> knowing about it</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/clap-rs/clap/commit/0d142f6c04a702b791d2dfec8327661ba1b6d16c"><code>0d142f6</code></a>
chore: Release</li>
<li><a
href="https://github.com/clap-rs/clap/commit/0facf1f370e7966a4d97bce56d1d10ca4c80d0ae"><code>0facf1f</code></a>
docs: Update changelog</li>
<li><a
href="https://github.com/clap-rs/clap/commit/ee6af99c6c5e239c0f2c92f9d1baf8aa3bb4af90"><code>ee6af99</code></a>
Merge pull request <a
href="https://redirect.github.com/clap-rs/clap/issues/5743">#5743</a>
from epage/sort</li>
<li><a
href="https://github.com/clap-rs/clap/commit/232ee106615e997f0841bb3de97eed126b929fe3"><code>232ee10</code></a>
fix(complete): Use existing display order for Arg/Command</li>
<li><a
href="https://github.com/clap-rs/clap/commit/c6b5d627a0c17527630e4086a4fe83589365d1f0"><code>c6b5d62</code></a>
feat(builder): Expose get_display_order</li>
<li><a
href="https://github.com/clap-rs/clap/commit/67d9fef9cee8f1b297aed73e6d95f78744b43a27"><code>67d9fef</code></a>
feat(complete): Give control over display order</li>
<li><a
href="https://github.com/clap-rs/clap/commit/59a61e188fbb9999db52f567e3951d3720204084"><code>59a61e1</code></a>
refactor(complete): Pull out common candidate code</li>
<li><a
href="https://github.com/clap-rs/clap/commit/144879194081212046d5566572bfa15ea9bcca35"><code>1448791</code></a>
fix(complete): Specify tags for built-in candiates</li>
<li><a
href="https://github.com/clap-rs/clap/commit/a4aa5dffdf46a2975f2b2d51ce7e618e19250ead"><code>a4aa5df</code></a>
feat(complete): Group by tag</li>
<li><a
href="https://github.com/clap-rs/clap/commit/a126149a809f01586ccb6d9299eb2fc2c87d8fe0"><code>a126149</code></a>
refactor(complete): Remove redundant dedup</li>
<li>Additional commits viewable in <a
href="https://github.com/clap-rs/clap/compare/v4.5.13...v4.5.18">compare
view</a></li>
</ul>
</details>
<br />

Updates `const_format_proc_macros` from 0.2.32 to 0.2.33
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/rodrimati1992/const_format_crates/blob/master/Changelog.md">const_format_proc_macros's
changelog</a>.</em></p>
<blockquote>
<h3>0.2.33</h3>
<p>Fixed Rust Analyzer style warning for assertion macros.</p>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li>See full diff in <a
href="https://github.com/rodrimati1992/const_format_crates/commits">compare
view</a></li>
</ul>
</details>
<br />

Updates `cpufeatures` from 0.2.13 to 0.2.14
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/RustCrypto/utils/commit/6a87dce97c9f927bea999ab957ccb6bc60a6c36f"><code>6a87dce</code></a>
cpufeatures v0.2.14 (<a
href="https://redirect.github.com/RustCrypto/utils/issues/1104">#1104</a>)</li>
<li><a
href="https://github.com/RustCrypto/utils/commit/4be67893ccece4823b606c5e29eccd44f7e07450"><code>4be6789</code></a>
aarch64-dit: initial crate (<a
href="https://redirect.github.com/RustCrypto/utils/issues/1102">#1102</a>)</li>
<li><a
href="https://github.com/RustCrypto/utils/commit/141756093ae5ee316af9cd3b459d4c5225bc86dd"><code>1417560</code></a>
README.md(s): use img.shields.io crate version badges</li>
<li><a
href="https://github.com/RustCrypto/utils/commit/cfa21ea50a22df26a52e17649e203e0c2657154d"><code>cfa21ea</code></a>
cpufeatures: add DIT support for AArch64 Linux targets (<a
href="https://redirect.github.com/RustCrypto/utils/issues/1101">#1101</a>)</li>
<li><a
href="https://github.com/RustCrypto/utils/commit/1ad40787ec88039f829144ef59b7bc506eaf07ed"><code>1ad4078</code></a>
cpufeatures: add support for DIT detection on Apple silicon (<a
href="https://redirect.github.com/RustCrypto/utils/issues/1100">#1100</a>)</li>
<li><a
href="https://github.com/RustCrypto/utils/commit/5d46aba5ef3720e854f48d93243c247e4611b125"><code>5d46aba</code></a>
block-buffer: release v0.11.0-rc.1 (<a
href="https://redirect.github.com/RustCrypto/utils/issues/1098">#1098</a>)</li>
<li>See full diff in <a
href="https://github.com/RustCrypto/utils/compare/cpufeatures-v0.2.13...cpufeatures-v0.2.14">compare
view</a></li>
</ul>
</details>
<br />

Updates `fastrand` from 2.1.0 to 2.1.1
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/smol-rs/fastrand/releases">fastrand's
releases</a>.</em></p>
<blockquote>
<h2>v2.1.1</h2>
<ul>
<li>Remove support for 128-bit targets, as they are not supported by
rustc yet. (<a
href="https://redirect.github.com/smol-rs/fastrand/issues/87">#87</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/smol-rs/fastrand/blob/master/CHANGELOG.md">fastrand's
changelog</a>.</em></p>
<blockquote>
<h1>Version 2.1.1</h1>
<ul>
<li>Remove support for 128-bit targets, as they are not supported by
rustc yet. (<a
href="https://redirect.github.com/smol-rs/fastrand/issues/87">#87</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/smol-rs/fastrand/commit/9d1a66fe46cee30e6c716812a9df467c653fa290"><code>9d1a66f</code></a>
v2.1.1</li>
<li><a
href="https://github.com/smol-rs/fastrand/commit/d05504dee3e2ec359fca62db9353de2ad3dfff40"><code>d05504d</code></a>
bugfix: Remove 128-bit value generator</li>
<li><a
href="https://github.com/smol-rs/fastrand/commit/7e60c7f688f9be3dcd4f59f216c87dac88ca2902"><code>7e60c7f</code></a>
chore: Forgot to bump the version</li>
<li>See full diff in <a
href="https://github.com/smol-rs/fastrand/compare/v2.1.0...v2.1.1">compare
view</a></li>
</ul>
</details>
<br />

Updates `flate2` from 1.0.32 to 1.0.34
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/rust-lang/flate2-rs/releases">flate2's
releases</a>.</em></p>
<blockquote>
<h2>1.0.34</h2>
<h2>What's Changed</h2>
<ul>
<li>Add minimum build test back in to CI by <a
href="https://github.com/jongiddy"><code>@​jongiddy</code></a> in <a
href="https://redirect.github.com/rust-lang/flate2-rs/pull/426">rust-lang/flate2-rs#426</a></li>
<li>docs: fix compression level range from 0-9 to 0-10 by <a
href="https://github.com/ByteBaker"><code>@​ByteBaker</code></a> in <a
href="https://redirect.github.com/rust-lang/flate2-rs/pull/427">rust-lang/flate2-rs#427</a></li>
<li>Document backend differences in compression levels by <a
href="https://github.com/Shnatsel"><code>@​Shnatsel</code></a> in <a
href="https://redirect.github.com/rust-lang/flate2-rs/pull/430">rust-lang/flate2-rs#430</a></li>
<li>Upgrade zlib-rs to 0.3.0 to get multiple bugfixes by <a
href="https://github.com/Shnatsel"><code>@​Shnatsel</code></a> in <a
href="https://redirect.github.com/rust-lang/flate2-rs/pull/428">rust-lang/flate2-rs#428</a></li>
<li>Better wording in compression level docs by <a
href="https://github.com/Shnatsel"><code>@​Shnatsel</code></a> in <a
href="https://redirect.github.com/rust-lang/flate2-rs/pull/431">rust-lang/flate2-rs#431</a></li>
</ul>
<h2>New Contributors</h2>
<ul>
<li><a href="https://github.com/ByteBaker"><code>@​ByteBaker</code></a>
made their first contribution in <a
href="https://redirect.github.com/rust-lang/flate2-rs/pull/427">rust-lang/flate2-rs#427</a></li>
<li><a href="https://github.com/Shnatsel"><code>@​Shnatsel</code></a>
made their first contribution in <a
href="https://redirect.github.com/rust-lang/flate2-rs/pull/430">rust-lang/flate2-rs#430</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/rust-lang/flate2-rs/compare/1.0.33...1.0.34">https://github.com/rust-lang/flate2-rs/compare/1.0.33...1.0.34</a></p>
<h2>1.0.33 - fix minimal manifest versions</h2>
<h2>What's Changed</h2>
<ul>
<li>Fix msrv: Run msrv checks with minimal versions by <a
href="https://github.com/NobodyXu"><code>@​NobodyXu</code></a> in <a
href="https://redirect.github.com/rust-lang/flate2-rs/pull/425">rust-lang/flate2-rs#425</a></li>
</ul>
<h2>New Contributors</h2>
<ul>
<li><a href="https://github.com/NobodyXu"><code>@​NobodyXu</code></a>
made their first contribution in <a
href="https://redirect.github.com/rust-lang/flate2-rs/pull/425">rust-lang/flate2-rs#425</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/rust-lang/flate2-rs/compare/1.0.32...1.0.33">https://github.com/rust-lang/flate2-rs/compare/1.0.32...1.0.33</a></p>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/rust-lang/flate2-rs/commit/1a28821dc116dac14178858be056e4a58ef8f501"><code>1a28821</code></a>
Merge pull request <a
href="https://redirect.github.com/rust-lang/flate2-rs/issues/431">#431</a>
from Shnatsel/better-wording</li>
<li><a
href="https://github.com/rust-lang/flate2-rs/commit/2c29780e5093b10c21954384cd97243770376814"><code>2c29780</code></a>
Merge pull request <a
href="https://redirect.github.com/rust-lang/flate2-rs/issues/428">#428</a>
from Shnatsel/upgrade-zlib-rs</li>
<li><a
href="https://github.com/rust-lang/flate2-rs/commit/423981aede8670a51d2c3aa657ae528152c0f64e"><code>423981a</code></a>
Better wording in compression level docs</li>
<li><a
href="https://github.com/rust-lang/flate2-rs/commit/da5c8cfd917b0ec2aeacc2e514b27b6bd50726e4"><code>da5c8cf</code></a>
Bump version</li>
<li><a
href="https://github.com/rust-lang/flate2-rs/commit/eeee4c641187628ec8676ffb24300c5da6bfb066"><code>eeee4c6</code></a>
Merge pull request <a
href="https://redirect.github.com/rust-lang/flate2-rs/issues/430">#430</a>
from Shnatsel/detailed-level-docs</li>
<li><a
href="https://github.com/rust-lang/flate2-rs/commit/731df32113188f3372367402b9ea2b…
backslashxx pushed a commit to backslashxx/KernelSU that referenced this pull request Dec 7, 2024
…tiann#2098)

Bumps the crates group with 25 updates in the /userspace/ksud directory:

| Package | From | To |
| --- | --- | --- |
| [anyhow](https://github.com/dtolnay/anyhow) | `1.0.86` | `1.0.89` |
| [clap](https://github.com/clap-rs/clap) | `4.5.16` | `4.5.18` |
| [const_format](https://github.com/rodrimati1992/const_format_crates) |
`0.2.32` | `0.2.33` |
| [serde](https://github.com/serde-rs/serde) | `1.0.208` | `1.0.210` |
| [serde_json](https://github.com/serde-rs/json) | `1.0.125` | `1.0.128`
|
| [libc](https://github.com/rust-lang/libc) | `0.2.158` | `0.2.159` |
| [is_executable](https://github.com/fitzgen/is_executable) | `1.0.1` |
`1.0.3` |
| [derive-new](https://github.com/nrc/derive-new) | `0.6.0` | `0.7.0` |
| [async-trait](https://github.com/dtolnay/async-trait) | `0.1.81` |
`0.1.83` |
| [autocfg](https://github.com/cuviper/autocfg) | `1.3.0` | `1.4.0` |
| [backtrace](https://github.com/rust-lang/backtrace-rs) | `0.3.73` |
`0.3.74` |
| [bytes](https://github.com/tokio-rs/bytes) | `1.7.1` | `1.7.2` |
| [cc](https://github.com/rust-lang/cc-rs) | `1.1.14` | `1.1.22` |
| [cpufeatures](https://github.com/RustCrypto/utils) | `0.2.13` |
`0.2.14` |
| [fastrand](https://github.com/smol-rs/fastrand) | `2.1.0` | `2.1.1` |
| [flate2](https://github.com/rust-lang/flate2-rs) | `1.0.32` | `1.0.34`
|
| [iana-time-zone](https://github.com/strawlab/iana-time-zone) |
`0.1.60` | `0.1.61` |
| [indexmap](https://github.com/indexmap-rs/indexmap) | `2.4.0` |
`2.5.0` |
| [object](https://github.com/gimli-rs/object) | `0.36.3` | `0.36.4` |
| [syn](https://github.com/dtolnay/syn) | `2.0.75` | `2.0.77` |
| [thiserror](https://github.com/dtolnay/thiserror) | `1.0.63` |
`1.0.64` |
| [tokio](https://github.com/tokio-rs/tokio) | `1.39.3` | `1.40.0` |
| [unicode-ident](https://github.com/dtolnay/unicode-ident) | `1.0.12` |
`1.0.13` |
| [unicode-width](https://github.com/unicode-rs/unicode-width) |
`0.1.13` | `0.1.14` |
| [unicode-xid](https://github.com/unicode-rs/unicode-xid) | `0.2.5` |
`0.2.6` |


Updates `anyhow` from 1.0.86 to 1.0.89
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/dtolnay/anyhow/releases">anyhow's
releases</a>.</em></p>
<blockquote>
<h2>1.0.89</h2>
<ul>
<li>Make anyhow::Error's <code>UnwindSafe</code> and
<code>RefUnwindSafe</code> impl consistently available between versions
of Rust newer and older than 1.72 (<a
href="https://redirect.github.com/dtolnay/anyhow/issues/386">#386</a>)</li>
</ul>
<h2>1.0.88</h2>
<ul>
<li>Documentation improvements</li>
</ul>
<h2>1.0.87</h2>
<ul>
<li>Support more APIs, including <code>Error::new</code> and
<code>Error::chain</code>, in no-std mode on Rust 1.81+ (<a
href="https://redirect.github.com/dtolnay/anyhow/issues/383">#383</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/dtolnay/anyhow/commit/9d3fb6d0968bd9f95a0d8bbc5269eb2496880510"><code>9d3fb6d</code></a>
Release 1.0.89</li>
<li><a
href="https://github.com/dtolnay/anyhow/commit/830c399126c1db902681130f5c4273d93767b990"><code>830c399</code></a>
Merge pull request <a
href="https://redirect.github.com/dtolnay/anyhow/issues/386">#386</a>
from dtolnay/unwindsafe</li>
<li><a
href="https://github.com/dtolnay/anyhow/commit/8454be372f2a7832436d7021b8f2f0a96db558b3"><code>8454be3</code></a>
Ensure UnwindSafe even with &quot;backtrace&quot; feature enabled and
old Rust</li>
<li><a
href="https://github.com/dtolnay/anyhow/commit/a85e414bf555ed961f59c2c69410e7b5f706df65"><code>a85e414</code></a>
Add more autotraits tests</li>
<li><a
href="https://github.com/dtolnay/anyhow/commit/139f266b903ac2eab462292495f864740446dcdc"><code>139f266</code></a>
Release 1.0.88</li>
<li><a
href="https://github.com/dtolnay/anyhow/commit/aa3ab2b9f0a8cdf4b54dae58d39a2446c5eecbb2"><code>aa3ab2b</code></a>
Merge pull request <a
href="https://redirect.github.com/dtolnay/anyhow/issues/385">#385</a>
from dtolnay/docnostd</li>
<li><a
href="https://github.com/dtolnay/anyhow/commit/44c37674d35a0899fde03ae2fdaeee0bd4c38501"><code>44c3767</code></a>
Update documentation on no-std error type conversions</li>
<li><a
href="https://github.com/dtolnay/anyhow/commit/afe93e7b167d069ac79f2c7f363b919d3793e6ce"><code>afe93e7</code></a>
Release 1.0.87</li>
<li><a
href="https://github.com/dtolnay/anyhow/commit/d58fa4b282c1149bd121419dd359eb8caf2c113d"><code>d58fa4b</code></a>
Fix outdated html_root_url</li>
<li><a
href="https://github.com/dtolnay/anyhow/commit/c18d80743cead05bd75cf2e310e7a00c515facb9"><code>c18d807</code></a>
Disable unused doc_cfg feature</li>
<li>Additional commits viewable in <a
href="https://github.com/dtolnay/anyhow/compare/1.0.86...1.0.89">compare
view</a></li>
</ul>
</details>
<br />

Updates `clap` from 4.5.16 to 4.5.18
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/clap-rs/clap/releases">clap's
releases</a>.</em></p>
<blockquote>
<h2>v4.5.18</h2>
<h2>[4.5.18] - 2024-09-20</h2>
<h3>Features</h3>
<ul>
<li><em>(builder)</em> Expose <code>Arg::get_display_order</code> and
<code>Command::get_display_order</code></li>
</ul>
<h2>v4.5.17</h2>
<h2>[4.5.17] - 2024-09-04</h2>
<h3>Fixes</h3>
<ul>
<li><em>(help)</em> Style required argument groups</li>
<li><em>(derive)</em> Improve error messages when unsupported fields are
used</li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/clap-rs/clap/blob/master/CHANGELOG.md">clap's
changelog</a>.</em></p>
<blockquote>
<h2>[4.5.18] - 2024-09-20</h2>
<h3>Features</h3>
<ul>
<li><em>(builder)</em> Expose <code>Arg::get_display_order</code> and
<code>Command::get_display_order</code></li>
</ul>
<h2>[4.5.17] - 2024-09-04</h2>
<h3>Fixes</h3>
<ul>
<li><em>(help)</em> Style required argument groups</li>
<li><em>(derive)</em> Improve error messages when unsupported fields are
used</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/clap-rs/clap/commit/d81158599f5b3a2434845a1731377eae84780b9a"><code>d811585</code></a>
chore: Release</li>
<li><a
href="https://github.com/clap-rs/clap/commit/ab948b35561b5bc64b50d6a52d799aa5ac5de187"><code>ab948b3</code></a>
docs: Update changelog</li>
<li><a
href="https://github.com/clap-rs/clap/commit/82e599e91d64ddae7231c98a91b4cd39e8c9036d"><code>82e599e</code></a>
Merge pull request <a
href="https://redirect.github.com/clap-rs/clap/issues/5602">#5602</a>
from shannmu/delimiter_values</li>
<li><a
href="https://github.com/clap-rs/clap/commit/59bf26dd56032a7a4e6d923cd37de6e72c33078e"><code>59bf26d</code></a>
feat(clap_complete): Support delimiter values in native completions</li>
<li><a
href="https://github.com/clap-rs/clap/commit/ccecab394b45bc4dd251d00b7d69737ed93d18f8"><code>ccecab3</code></a>
test(clap_complete): Add test cases for delimiter_values support</li>
<li><a
href="https://github.com/clap-rs/clap/commit/a3a476407b01f083dc06200783ad745bc45e5da8"><code>a3a4764</code></a>
docs(derive): Specify Parser::update_from semantics</li>
<li><a
href="https://github.com/clap-rs/clap/commit/df165a2da431138bcc5cd891aec922cbdeda6ded"><code>df165a2</code></a>
docs(derive): Flatten isn't just for update</li>
<li><a
href="https://github.com/clap-rs/clap/commit/5488bcfa30255c59f931f1248e854c0087b2b969"><code>5488bcf</code></a>
docs(derive): Connect more dots for Args/Subcommand</li>
<li><a
href="https://github.com/clap-rs/clap/commit/6013ad4f676dd25c5b5150557a5fb5698c3de020"><code>6013ad4</code></a>
chore: Release</li>
<li><a
href="https://github.com/clap-rs/clap/commit/f98e3ee215015055d776f91217019c33da78c975"><code>f98e3ee</code></a>
docs: Update changelog</li>
<li>Additional commits viewable in <a
href="https://github.com/clap-rs/clap/compare/clap_complete-v4.5.16...clap_complete-v4.5.18">compare
view</a></li>
</ul>
</details>
<br />

Updates `const_format` from 0.2.32 to 0.2.33
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/rodrimati1992/const_format_crates/blob/master/Changelog.md">const_format's
changelog</a>.</em></p>
<blockquote>
<h3>0.2.33</h3>
<p>Fixed Rust Analyzer style warning for assertion macros.</p>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li>See full diff in <a
href="https://github.com/rodrimati1992/const_format_crates/commits">compare
view</a></li>
</ul>
</details>
<br />

Updates `serde` from 1.0.208 to 1.0.210
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/serde-rs/serde/releases">serde's
releases</a>.</em></p>
<blockquote>
<h2>v1.0.210</h2>
<ul>
<li>Support serializing and deserializing <code>IpAddr</code> and
<code>SocketAddr</code> in no-std mode on Rust 1.77+ (<a
href="https://redirect.github.com/serde-rs/serde/issues/2816">#2816</a>,
thanks <a
href="https://github.com/MathiasKoch"><code>@​MathiasKoch</code></a>)</li>
<li>Make <code>serde::ser::StdError</code> and
<code>serde::de::StdError</code> equivalent to
<code>core::error::Error</code> on Rust 1.81+ (<a
href="https://redirect.github.com/serde-rs/serde/issues/2818">#2818</a>)</li>
</ul>
<h2>v1.0.209</h2>
<ul>
<li>Fix deserialization of empty structs and empty tuples inside of
untagged enums (<a
href="https://redirect.github.com/serde-rs/serde/issues/2805">#2805</a>,
thanks <a
href="https://github.com/Mingun"><code>@​Mingun</code></a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/serde-rs/serde/commit/89c4b02bf32ceae5b17d89f93a452ccc195ca038"><code>89c4b02</code></a>
Release 1.0.210</li>
<li><a
href="https://github.com/serde-rs/serde/commit/eeb8e44cda15f929796cd72241b0311e0bd04e67"><code>eeb8e44</code></a>
Merge pull request <a
href="https://redirect.github.com/serde-rs/serde/issues/2818">#2818</a>
from dtolnay/coreerror</li>
<li><a
href="https://github.com/serde-rs/serde/commit/785c2d9605ee73cc172dfd421228c1dccca984c9"><code>785c2d9</code></a>
Stabilize no-std StdError trait</li>
<li><a
href="https://github.com/serde-rs/serde/commit/d549f048e10bcb5e677afaf7b99d0ed3604b113b"><code>d549f04</code></a>
Reformat parse_ip_impl definition and calls</li>
<li><a
href="https://github.com/serde-rs/serde/commit/4c0dd63011434905265e2710bb9186e09e4f8ec2"><code>4c0dd63</code></a>
Delete attr support from core::net deserialization macros</li>
<li><a
href="https://github.com/serde-rs/serde/commit/26fb1341651c4e0ae4d58c675db3ca2a0d6e12c2"><code>26fb134</code></a>
Relocate cfg attrs out of parse_ip_impl and parse_socket_impl</li>
<li><a
href="https://github.com/serde-rs/serde/commit/07e614b52b5ab3387d86d3198e5f52cd1f5ff3cb"><code>07e614b</code></a>
Merge pull request <a
href="https://redirect.github.com/serde-rs/serde/issues/2817">#2817</a>
from dtolnay/corenet</li>
<li><a
href="https://github.com/serde-rs/serde/commit/b1f899fbe81f070803d9f7ca6e5d1cc3f19c9ea2"><code>b1f899f</code></a>
Delete doc(cfg) attribute from impls that are supported in no-std</li>
<li><a
href="https://github.com/serde-rs/serde/commit/b4f860e62767828beb3ef91721b6c56a31f9baad"><code>b4f860e</code></a>
Merge pull request <a
href="https://redirect.github.com/serde-rs/serde/issues/2816">#2816</a>
from MathiasKoch/chore/core-net</li>
<li><a
href="https://github.com/serde-rs/serde/commit/d940fe1b4934f097b0333dcb87bec5ee308d39cd"><code>d940fe1</code></a>
Reuse existing Buf wrapper as replacement for std::io::Write</li>
<li>Additional commits viewable in <a
href="https://github.com/serde-rs/serde/compare/v1.0.208...v1.0.210">compare
view</a></li>
</ul>
</details>
<br />

Updates `serde_json` from 1.0.125 to 1.0.128
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/serde-rs/json/releases">serde_json's
releases</a>.</em></p>
<blockquote>
<h2>1.0.128</h2>
<ul>
<li>Support serializing maps containing 128-bit integer keys to
serde_json::Value (<a
href="https://redirect.github.com/serde-rs/json/issues/1188">#1188</a>,
thanks <a
href="https://github.com/Mrreadiness"><code>@​Mrreadiness</code></a>)</li>
</ul>
<h2>1.0.127</h2>
<ul>
<li>Add more removal methods to OccupiedEntry (<a
href="https://redirect.github.com/serde-rs/json/issues/1179">#1179</a>,
thanks <a
href="https://github.com/GREsau"><code>@​GREsau</code></a>)</li>
</ul>
<h2>1.0.126</h2>
<ul>
<li>Improve string parsing on targets that use 32-bit pointers but also
have fast 64-bit integer arithmetic, such as
aarch64-unknown-linux-gnu_ilp32 and x86_64-unknown-linux-gnux32 (<a
href="https://redirect.github.com/serde-rs/json/issues/1182">#1182</a>,
thanks <a href="https://github.com/CryZe"><code>@​CryZe</code></a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/serde-rs/json/commit/d96b1d9b643b49a0bb92a8cf280daf6aa08f37cc"><code>d96b1d9</code></a>
Release 1.0.128</li>
<li><a
href="https://github.com/serde-rs/json/commit/599228d5dc52a0f1595fe4bd901821f70d0317a5"><code>599228d</code></a>
Merge pull request <a
href="https://redirect.github.com/serde-rs/json/issues/1188">#1188</a>
from Mrreadiness/feat/add-hashmap-key-128-serializer</li>
<li><a
href="https://github.com/serde-rs/json/commit/5416cee6c5ad355907f6e9d5f6039b994c69f768"><code>5416cee</code></a>
feat: add support for 128 bit HashMap key serialization</li>
<li><a
href="https://github.com/serde-rs/json/commit/27a4ca9d7a62394fe8f0103f3d91de59f055a4c4"><code>27a4ca9</code></a>
Upload CI Cargo.lock for reproducing failures</li>
<li><a
href="https://github.com/serde-rs/json/commit/5ebf65cc480f90714c94f82099ca9161d80cbb10"><code>5ebf65c</code></a>
Release 1.0.127</li>
<li><a
href="https://github.com/serde-rs/json/commit/f287a3b1a93ecb1a11cee31cb638bd9523a58add"><code>f287a3b</code></a>
Merge pull request 1179 from GREsau/patch-1</li>
<li><a
href="https://github.com/serde-rs/json/commit/ec980b02774abbff12fd3e26b0a1582eb14dcef7"><code>ec980b0</code></a>
Release 1.0.126</li>
<li><a
href="https://github.com/serde-rs/json/commit/e6282b0c479947805a33c7f167b1d19dd4c7ad4f"><code>e6282b0</code></a>
Merge pull request <a
href="https://redirect.github.com/serde-rs/json/issues/1184">#1184</a>
from serde-rs/fastarithmetic</li>
<li><a
href="https://github.com/serde-rs/json/commit/ffc4a43453029cdc5603cfe3ef08414488fd45de"><code>ffc4a43</code></a>
Improve cfg names for fast arithmetic</li>
<li><a
href="https://github.com/serde-rs/json/commit/4b1048d0ecc4d326d6657531689513f182a4f850"><code>4b1048d</code></a>
Merge pull request <a
href="https://redirect.github.com/serde-rs/json/issues/1183">#1183</a>
from serde-rs/arithmetic</li>
<li>Additional commits viewable in <a
href="https://github.com/serde-rs/json/compare/1.0.125...1.0.128">compare
view</a></li>
</ul>
</details>
<br />

Updates `libc` from 0.2.158 to 0.2.159
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/rust-lang/libc/releases">libc's
releases</a>.</em></p>
<blockquote>
<h2>0.2.159</h2>
<h3>Added</h3>
<ul>
<li>Android: add more <code>AT_*</code> constants in <a
href="https://redirect.github.com/rust-lang/libc/pull/3779">rust-lang/libc#3779</a></li>
<li>Apple: add missing <code>NOTE_*</code> constants in <a
href="https://redirect.github.com/rust-lang/libc/pull/3883">rust-lang/libc#3883</a></li>
<li>Hermit: add missing error numbers in <a
href="https://redirect.github.com/rust-lang/libc/pull/3858">rust-lang/libc#3858</a></li>
<li>Hurd: add <code>__timeval</code> for 64-bit support in <a
href="https://redirect.github.com/rust-lang/libc/pull/3786">rust-lang/libc#3786</a></li>
<li>Linux: add <code>epoll_pwait2</code> in <a
href="https://redirect.github.com/rust-lang/libc/pull/3868">rust-lang/libc#3868</a></li>
<li>Linux: add <code>mq_notify</code> in <a
href="https://redirect.github.com/rust-lang/libc/pull/3849">rust-lang/libc#3849</a></li>
<li>Linux: add missing <code>NFT_CT_*</code> constants in <a
href="https://redirect.github.com/rust-lang/libc/pull/3844">rust-lang/libc#3844</a></li>
<li>Linux: add the <code>fchmodat2</code> syscall in <a
href="https://redirect.github.com/rust-lang/libc/pull/3588">rust-lang/libc#3588</a></li>
<li>Linux: add the <code>mseal</code> syscall in <a
href="https://redirect.github.com/rust-lang/libc/pull/3798">rust-lang/libc#3798</a></li>
<li>OpenBSD: add <code>sendmmsg</code> and <code>recvmmsg</code> in <a
href="https://redirect.github.com/rust-lang/libc/pull/3831">rust-lang/libc#3831</a></li>
<li>Unix: add <code>IN6ADDR_ANY_INIT</code> and
<code>IN6ADDR_LOOPBACK_INIT</code> in <a
href="https://redirect.github.com/rust-lang/libc/pull/3693">rust-lang/libc#3693</a></li>
<li>VxWorks: add <code>S_ISVTX</code> in <a
href="https://redirect.github.com/rust-lang/libc/pull/3768">rust-lang/libc#3768</a></li>
<li>VxWorks: add <code>vxCpuLib</code> and <code>taskLib</code>
functions <a
href="https://redirect.github.com/rust-lang/libc/pull/3861">rust-lang/libc#3861</a></li>
<li>WASIp2: add definitions for <code>std::net</code> support in <a
href="https://redirect.github.com/rust-lang/libc/pull/3892">rust-lang/libc#3892</a></li>
</ul>
<h3>Fixed</h3>
<ul>
<li>Correctly handle version checks when <code>clippy-driver</code> is
used <a
href="https://redirect.github.com/rust-lang/libc/pull/3893">rust-lang/libc#3893</a></li>
</ul>
<h3>Changed</h3>
<ul>
<li>EspIdf: change signal constants to c_int in <a
href="https://redirect.github.com/rust-lang/libc/pull/3895">rust-lang/libc#3895</a></li>
<li>HorizonOS: update network definitions in <a
href="https://redirect.github.com/rust-lang/libc/pull/3863">rust-lang/libc#3863</a></li>
<li>Linux: combine <code>ioctl</code> APIs in <a
href="https://redirect.github.com/rust-lang/libc/pull/3722">rust-lang/libc#3722</a></li>
<li>WASI: enable CI testing in <a
href="https://redirect.github.com/rust-lang/libc/pull/3869">rust-lang/libc#3869</a></li>
<li>WASIp2: enable CI testing in <a
href="https://redirect.github.com/rust-lang/libc/pull/3870">rust-lang/libc#3870</a></li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/rust-lang/libc/blob/0.2.159/CHANGELOG.md">libc's
changelog</a>.</em></p>
<blockquote>
<h2><a
href="https://github.com/rust-lang/libc/compare/0.2.158...0.2.159">0.2.159</a>
- 2024-09-24</h2>
<h3>Added</h3>
<ul>
<li>Android: add more <code>AT_*</code> constants in <a
href="https://redirect.github.com/rust-lang/libc/pull/3779">rust-lang/libc#3779</a></li>
<li>Apple: add missing <code>NOTE_*</code> constants in <a
href="https://redirect.github.com/rust-lang/libc/pull/3883">rust-lang/libc#3883</a></li>
<li>Hermit: add missing error numbers in <a
href="https://redirect.github.com/rust-lang/libc/pull/3858">rust-lang/libc#3858</a></li>
<li>Hurd: add <code>__timeval</code> for 64-bit support in <a
href="https://redirect.github.com/rust-lang/libc/pull/3786">rust-lang/libc#3786</a></li>
<li>Linux: add <code>epoll_pwait2</code> in <a
href="https://redirect.github.com/rust-lang/libc/pull/3868">rust-lang/libc#3868</a></li>
<li>Linux: add <code>mq_notify</code> in <a
href="https://redirect.github.com/rust-lang/libc/pull/3849">rust-lang/libc#3849</a></li>
<li>Linux: add missing <code>NFT_CT_*</code> constants in <a
href="https://redirect.github.com/rust-lang/libc/pull/3844">rust-lang/libc#3844</a></li>
<li>Linux: add the <code>fchmodat2</code> syscall in <a
href="https://redirect.github.com/rust-lang/libc/pull/3588">rust-lang/libc#3588</a></li>
<li>Linux: add the <code>mseal</code> syscall in <a
href="https://redirect.github.com/rust-lang/libc/pull/3798">rust-lang/libc#3798</a></li>
<li>OpenBSD: add <code>sendmmsg</code> and <code>recvmmsg</code> in <a
href="https://redirect.github.com/rust-lang/libc/pull/3831">rust-lang/libc#3831</a></li>
<li>Unix: add <code>IN6ADDR_ANY_INIT</code> and
<code>IN6ADDR_LOOPBACK_INIT</code> in <a
href="https://redirect.github.com/rust-lang/libc/pull/3693">rust-lang/libc#3693</a></li>
<li>VxWorks: add <code>S_ISVTX</code> in <a
href="https://redirect.github.com/rust-lang/libc/pull/3768">rust-lang/libc#3768</a></li>
<li>VxWorks: add <code>vxCpuLib</code> and <code>taskLib</code>
functions <a
href="https://redirect.github.com/rust-lang/libc/pull/3861">rust-lang/libc#3861</a></li>
<li>WASIp2: add definitions for <code>std::net</code> support in <a
href="https://redirect.github.com/rust-lang/libc/pull/3892">rust-lang/libc#3892</a></li>
</ul>
<h3>Fixed</h3>
<ul>
<li>Correctly handle version checks when <code>clippy-driver</code> is
used <a
href="https://redirect.github.com/rust-lang/libc/pull/3893">rust-lang/libc#3893</a></li>
</ul>
<h3>Changed</h3>
<ul>
<li>EspIdf: change signal constants to c_int in <a
href="https://redirect.github.com/rust-lang/libc/pull/3895">rust-lang/libc#3895</a></li>
<li>HorizonOS: update network definitions in <a
href="https://redirect.github.com/rust-lang/libc/pull/3863">rust-lang/libc#3863</a></li>
<li>Linux: combine <code>ioctl</code> APIs in <a
href="https://redirect.github.com/rust-lang/libc/pull/3722">rust-lang/libc#3722</a></li>
<li>WASI: enable CI testing in <a
href="https://redirect.github.com/rust-lang/libc/pull/3869">rust-lang/libc#3869</a></li>
<li>WASIp2: enable CI testing in <a
href="https://redirect.github.com/rust-lang/libc/pull/3870">rust-lang/libc#3870</a></li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/rust-lang/libc/commit/7373a1abe57da20efae9fd2ca891d7b905c19e03"><code>7373a1a</code></a>
chore: release (<a
href="https://redirect.github.com/rust-lang/libc/issues/3862">#3862</a>)</li>
<li><a
href="https://github.com/rust-lang/libc/commit/48668be46be0dbc2d3dfcf942778c37a07d38a87"><code>48668be</code></a>
Merge pull request <a
href="https://redirect.github.com/rust-lang/libc/issues/3931">#3931</a>
from tgross35/backport-remove-tmp-file</li>
<li><a
href="https://github.com/rust-lang/libc/commit/28bb64b1fe678ca090f9af08d786949d53285940"><code>28bb64b</code></a>
Remove temporary file that was added by accident</li>
<li><a
href="https://github.com/rust-lang/libc/commit/a515d07dd95093bc1c3a7b716f0936d2d0b989db"><code>a515d07</code></a>
Merge pull request <a
href="https://redirect.github.com/rust-lang/libc/issues/3904">#3904</a>
from tgross35/backport-buildrs-fix</li>
<li><a
href="https://github.com/rust-lang/libc/commit/abcb8f87986c8f57a28c4f67d7939272f4f8cbad"><code>abcb8f8</code></a>
Simplify the RUSTC_WRAPPER check</li>
<li><a
href="https://github.com/rust-lang/libc/commit/507833559bd0bfe04b5139c1607c3dc3208174f5"><code>5078335</code></a>
Fix rustc version when <code>clippy-driver</code> is used</li>
<li><a
href="https://github.com/rust-lang/libc/commit/57a7d465fa69c85bb96c98c84762ada90ad02077"><code>57a7d46</code></a>
Merge pull request <a
href="https://redirect.github.com/rust-lang/libc/issues/3902">#3902</a>
from tgross35/backport-horizon-network</li>
<li><a
href="https://github.com/rust-lang/libc/commit/a3e88691a9a1a41867b0692b67cc50f5b1d39eb2"><code>a3e8869</code></a>
Revise network definitions for HorizonOS</li>
<li><a
href="https://github.com/rust-lang/libc/commit/fdd3a268960639b4714c2829976b87b374fa0f9f"><code>fdd3a26</code></a>
Merge pull request <a
href="https://redirect.github.com/rust-lang/libc/issues/3900">#3900</a>
from tgross35/espid-cherry-pick</li>
<li><a
href="https://github.com/rust-lang/libc/commit/35060e8eb0bd7a64722fc7ff8ef475f6b15384a9"><code>35060e8</code></a>
Merge pull request <a
href="https://redirect.github.com/rust-lang/libc/issues/3901">#3901</a>
from tgross35/backport-epoll_pwait2</li>
<li>Additional commits viewable in <a
href="https://github.com/rust-lang/libc/compare/0.2.158...0.2.159">compare
view</a></li>
</ul>
</details>
<br />

Updates `is_executable` from 1.0.1 to 1.0.3
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/fitzgen/is_executable/commit/cfe991224073cdab13ff6a8133d1cacd8182e21a"><code>cfe9912</code></a>
Bump to version 1.0.3</li>
<li><a
href="https://github.com/fitzgen/is_executable/commit/d6fcf2f526963b4e12ab063fca255bbe75bca178"><code>d6fcf2f</code></a>
Remove old test about README.md being in sync with module docs</li>
<li><a
href="https://github.com/fitzgen/is_executable/commit/95f27a6d3dae185ee1332728e959e4ff7c6890d9"><code>95f27a6</code></a>
Remove old CI</li>
<li><a
href="https://github.com/fitzgen/is_executable/commit/e70c103b81b5e5e7f25d7973605181cc622f2578"><code>e70c103</code></a>
Update badges in README</li>
<li><a
href="https://github.com/fitzgen/is_executable/commit/61d2e9ba8cf05a1410ca69fd157ca234c65a8af7"><code>61d2e9b</code></a>
Add github actions</li>
<li><a
href="https://github.com/fitzgen/is_executable/commit/001b334761623dcc0182dded9f1e3b949f7cf79a"><code>001b334</code></a>
Bump to version 1.0.2</li>
<li><a
href="https://github.com/fitzgen/is_executable/commit/fab168c19690b6247f9e983fd0e0d0d8599c3bef"><code>fab168c</code></a>
Merge pull request <a
href="https://redirect.github.com/fitzgen/is_executable/issues/14">#14</a>
from lucieleblanc/master</li>
<li><a
href="https://github.com/fitzgen/is_executable/commit/82f9c68782656eb9ec2fcad978fce3c9e60a3072"><code>82f9c68</code></a>
replace is_file() --&gt; exists() because symlinks are ok</li>
<li><a
href="https://github.com/fitzgen/is_executable/commit/441c1c7df30116f3a4a1b8a999e457816d77cf7a"><code>441c1c7</code></a>
add file existence check before reading extension</li>
<li><a
href="https://github.com/fitzgen/is_executable/commit/ea10f6b2f8456bdcc5300027c5605ff6089b371c"><code>ea10f6b</code></a>
Merge pull request <a
href="https://redirect.github.com/fitzgen/is_executable/issues/11">#11</a>
from davide125/exclude</li>
<li>Additional commits viewable in <a
href="https://github.com/fitzgen/is_executable/compare/v1.0.1...v1.0.3">compare
view</a></li>
</ul>
</details>
<br />

Updates `derive-new` from 0.6.0 to 0.7.0
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/nrc/derive-new/commit/6626d8f566ee523ead38fe789b171f1b46993e49"><code>6626d8f</code></a>
Update compiletest</li>
<li><a
href="https://github.com/nrc/derive-new/commit/1e024ddf396e06690c0b39baa5a4f996ae88404b"><code>1e024dd</code></a>
cargo update, etc.</li>
<li><a
href="https://github.com/nrc/derive-new/commit/3389ef278665f8e0be249b6f4bd3cbfc727160a8"><code>3389ef2</code></a>
Fix doc tests</li>
<li><a
href="https://github.com/nrc/derive-new/commit/bd4486d85de87d5a543a7604f4e8f136c8b0e973"><code>bd4486d</code></a>
implement <code>into</code> and <code>into_iter</code></li>
<li><a
href="https://github.com/nrc/derive-new/commit/a9230ace30ffc43836e0e49e42e1203c7f079732"><code>a9230ac</code></a>
fix tests</li>
<li><a
href="https://github.com/nrc/derive-new/commit/77cb8287d22ca3aff803577a49321886895a43ee"><code>77cb828</code></a>
Merge pull request <a
href="https://redirect.github.com/nrc/derive-new/issues/67">#67</a> from
Paragit-Solutions/implement-new-method-visibility</li>
<li><a
href="https://github.com/nrc/derive-new/commit/cacbadabd235a83e978fcd52d9ed83dffff43abd"><code>cacbada</code></a>
Merge pull request <a
href="https://redirect.github.com/nrc/derive-new/issues/66">#66</a> from
shellixyz/patch-1</li>
<li><a
href="https://github.com/nrc/derive-new/commit/d11f63160c0829dbf06a1aab30f431c9b58ecc37"><code>d11f631</code></a>
Add documentation</li>
<li><a
href="https://github.com/nrc/derive-new/commit/3311408f8fc4844e857708bf2a222c939ac1066d"><code>3311408</code></a>
Add visibility to test struct to test compilation and correct macro
expansion</li>
<li><a
href="https://github.com/nrc/derive-new/commit/61853b79702bae6d0ffa343718310f20463687a4"><code>61853b7</code></a>
Make the default visibility public</li>
<li>Additional commits viewable in <a
href="https://github.com/nrc/derive-new/compare/0.6.0...0.7">compare
view</a></li>
</ul>
</details>
<br />

Updates `async-trait` from 0.1.81 to 0.1.83
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/dtolnay/async-trait/releases">async-trait's
releases</a>.</em></p>
<blockquote>
<h2>0.1.83</h2>
<ul>
<li>Prevent needless_arbitrary_self_type lint being produced in
generated code (<a
href="https://redirect.github.com/dtolnay/async-trait/issues/278">#278</a>)</li>
</ul>
<h2>0.1.82</h2>
<ul>
<li>Prevent elided_named_lifetimes lint being produced in generated code
(<a
href="https://redirect.github.com/dtolnay/async-trait/issues/276">#276</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/dtolnay/async-trait/commit/e6b4d471c64156338fb87386b7a7ad8543c3a205"><code>e6b4d47</code></a>
Release 0.1.83</li>
<li><a
href="https://github.com/dtolnay/async-trait/commit/bfe8d617660237b27eee620181586a16ff2f6a25"><code>bfe8d61</code></a>
Merge pull request <a
href="https://redirect.github.com/dtolnay/async-trait/issues/278">#278</a>
from dtolnay/arbself</li>
<li><a
href="https://github.com/dtolnay/async-trait/commit/7bd974b3a4db2c3ab321de2976d09d3ea2b82348"><code>7bd974b</code></a>
Ignore needless_arbitrary_self_type clippy lint in generated code</li>
<li><a
href="https://github.com/dtolnay/async-trait/commit/b53b4e755402ef91d2104d40b8f303ad0c56d2f9"><code>b53b4e7</code></a>
Add regression test for issue 277</li>
<li><a
href="https://github.com/dtolnay/async-trait/commit/f8e5bb43181450a17068f160e8a51d410ede1705"><code>f8e5bb4</code></a>
Release 0.1.82</li>
<li><a
href="https://github.com/dtolnay/async-trait/commit/8fbf118de30d3d30416d5a2dff496513433171c4"><code>8fbf118</code></a>
Merge pull request <a
href="https://redirect.github.com/dtolnay/async-trait/issues/276">#276</a>
from dtolnay/elidednamed</li>
<li><a
href="https://github.com/dtolnay/async-trait/commit/6fa246a0546fc678c4812ccb59306b6b264c27a0"><code>6fa246a</code></a>
Ignore nightly's new elided_named_lifetimes lint in generated code</li>
<li><a
href="https://github.com/dtolnay/async-trait/commit/d542a0dd74f366995e5924edc2d6ac7661e5d9ca"><code>d542a0d</code></a>
Upload CI Cargo.lock for reproducing failures</li>
<li><a
href="https://github.com/dtolnay/async-trait/commit/8828c35a86442dd05b6ac3aab5f0bac769e246f0"><code>8828c35</code></a>
Sort dependency features in Cargo.toml</li>
<li><a
href="https://github.com/dtolnay/async-trait/commit/ba9793af3f3936e2373ab4c482bf49ac67009df8"><code>ba9793a</code></a>
Update ui test suite to nightly-2024-08-11</li>
<li>Additional commits viewable in <a
href="https://github.com/dtolnay/async-trait/compare/0.1.81...0.1.83">compare
view</a></li>
</ul>
</details>
<br />

Updates `autocfg` from 1.3.0 to 1.4.0
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/cuviper/autocfg/commit/d07df6624a4573803a29397c0ccf636aa0b3d153"><code>d07df66</code></a>
Merge pull request <a
href="https://redirect.github.com/cuviper/autocfg/issues/73">#73</a>
from cuviper/release-1.4.0</li>
<li><a
href="https://github.com/cuviper/autocfg/commit/f6066f016441c2a25e0fa0d9d0521b1a79b0e14c"><code>f6066f0</code></a>
Release 1.4.0</li>
<li><a
href="https://github.com/cuviper/autocfg/commit/8af60eca650aed24db3042dbd0a2e1f61016b95e"><code>8af60ec</code></a>
Merge pull request <a
href="https://redirect.github.com/cuviper/autocfg/issues/70">#70</a>
from Techcable/feature/rustc-check-cfg</li>
<li><a
href="https://github.com/cuviper/autocfg/commit/52a995b6723ae015fbed7312d56803492f01e10a"><code>52a995b</code></a>
Apply suggestions from code review</li>
<li><a
href="https://github.com/cuviper/autocfg/commit/a8703c163f5aa66819f515356530420955374386"><code>a8703c1</code></a>
Attempt rust 1.0 compat for ci/verify-check-cfg</li>
<li><a
href="https://github.com/cuviper/autocfg/commit/ac78be804dbcf9e616d69a93c0ba918adc6a003a"><code>ac78be8</code></a>
Add ci test crate for check-cfg</li>
<li><a
href="https://github.com/cuviper/autocfg/commit/0b4a7617ad0e6ccf271dac7ab920a731195fab32"><code>0b4a761</code></a>
Have emit_has methods delegate wherever possible</li>
<li><a
href="https://github.com/cuviper/autocfg/commit/546f7c6c1c0e25b2dca136675934348118f603d2"><code>546f7c6</code></a>
Fix minor doc issues</li>
<li><a
href="https://github.com/cuviper/autocfg/commit/e0e0f18f54fb60f9c42a01c6571edcdab4542db6"><code>e0e0f18</code></a>
Automatically emit <code>rustc-check-cfg</code> directives for
AutoCfg</li>
<li><a
href="https://github.com/cuviper/autocfg/commit/1953a17319e667dd2ead9a4eae0645ed939eef24"><code>1953a17</code></a>
Merge pull request <a
href="https://redirect.github.com/cuviper/autocfg/issues/72">#72</a>
from cuviper/pretty-way</li>
<li>Additional commits viewable in <a
href="https://github.com/cuviper/autocfg/compare/1.3.0...1.4.0">compare
view</a></li>
</ul>
</details>
<br />

Updates `backtrace` from 0.3.73 to 0.3.74
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/rust-lang/backtrace-rs/releases">backtrace's
releases</a>.</em></p>
<blockquote>
<h2>0.3.74</h2>
<h2>What's Changed</h2>
<ul>
<li>QNX Neutrino 7.0 support, thanks to <a
href="https://github.com/nyurik"><code>@​nyurik</code></a> in <a
href="https://redirect.github.com/rust-lang/backtrace-rs/pull/648">rust-lang/backtrace-rs#648</a></li>
<li>Cleaned up our Android support. This should massively improve
backtraces for ones with the API level sufficient to ship with
libunwind, etc. Unfortunately, it comes at the cost of dropping support
for older ones! Thanks to <a
href="https://github.com/fengys"><code>@​fengys</code></a> in <a
href="https://redirect.github.com/rust-lang/backtrace-rs/pull/656">rust-lang/backtrace-rs#656</a></li>
<li>Made PrintFmt, which was using the
<code>Enum::__NonExhaustiveVariant</code> pattern, use
<code>#[non_exhaustive]</code> for real. Don't @ me if you were matching
on that! Thanks to <a
href="https://github.com/nyurik"><code>@​nyurik</code></a> in <a
href="https://redirect.github.com/rust-lang/backtrace-rs/pull/651">rust-lang/backtrace-rs#651</a></li>
<li>Massively cleaned up the windows code! We moved from winapi to
windows-sys with windows-targets thanks to <a
href="https://github.com/CraftSpider"><code>@​CraftSpider</code></a> and
<a href="https://github.com/ChrisDenton"><code>@​ChrisDenton</code></a>
in
<ul>
<li>Don't cast HANDLE to usize and back by <a
href="https://github.com/CraftSpider"><code>@​CraftSpider</code></a> in
<a
href="https://redirect.github.com/rust-lang/backtrace-rs/pull/635">rust-lang/backtrace-rs#635</a></li>
<li>Switch from <code>winapi</code> to <code>windows-sys</code> by <a
href="https://github.com/CraftSpider"><code>@​CraftSpider</code></a> in
<a
href="https://redirect.github.com/rust-lang/backtrace-rs/pull/641">rust-lang/backtrace-rs#641</a></li>
<li>Update windows bindings and use windows-targets by <a
href="https://github.com/ChrisDenton"><code>@​ChrisDenton</code></a> in
<a
href="https://redirect.github.com/rust-lang/backtrace-rs/pull/653">rust-lang/backtrace-rs#653</a></li>
</ul>
</li>
<li>A bunch of updated dependencies. Thanks <a
href="https://github.com/djc"><code>@​djc</code></a> and <a
href="https://github.com/khuey"><code>@​khuey</code></a>!</li>
<li>Sorry if you were testing this code in miri! It started yelling
about sussy casts. A lot. We did a bunch of internal cleanups that
should make it quiet down, thanks to <a
href="https://github.com/workingjubilee"><code>@​workingjubilee</code></a>
in <a
href="https://redirect.github.com/rust-lang/backtrace-rs/pull/641">rust-lang/backtrace-rs#641</a></li>
<li>Uhhh we had to tweak <code>dl_iterate_phdr</code> in <a
href="https://redirect.github.com/rust-lang/backtrace-rs/pull/660">rust-lang/backtrace-rs#660</a>
after Android revealed it was... kind of unsound actually and not doing
things like checking for null pointers before making slices! WHOOPS!
Thanks to <a
href="https://github.com/saethlin"><code>@​saethlin</code></a> for
implementing detection for precisely that in rustc! It's really hard to
find soundness issues in inherited codebases like this one...</li>
</ul>
<h2>New Contributors</h2>
<ul>
<li><a
href="https://github.com/CraftSpider"><code>@​CraftSpider</code></a>
made their first contribution in <a
href="https://redirect.github.com/rust-lang/backtrace-rs/pull/635">rust-lang/backtrace-rs#635</a></li>
<li><a
href="https://github.com/fengys1996"><code>@​fengys1996</code></a> made
their first contribution in <a
href="https://redirect.github.com/rust-lang/backtrace-rs/pull/656">rust-lang/backtrace-rs#656</a></li>
<li><a href="https://github.com/djc"><code>@​djc</code></a> made their
first contribution in <a
href="https://redirect.github.com/rust-lang/backtrace-rs/pull/657">rust-lang/backtrace-rs#657</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/rust-lang/backtrace-rs/compare/0.3.73...0.3.74">https://github.com/rust-lang/backtrace-rs/compare/0.3.73...0.3.74</a></p>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/rust-lang/backtrace-rs/commit/38d49aa0395c50047ab26e418a0cb30d9955fb64"><code>38d49aa</code></a>
Merge pull request <a
href="https://redirect.github.com/rust-lang/backtrace-rs/issues/658">#658</a>
from workingjubilee/cut-0.3.74</li>
<li><a
href="https://github.com/rust-lang/backtrace-rs/commit/c1749ce9a8cc0105b9d224e66f9ce4632133c1ea"><code>c1749ce</code></a>
Cut backtrace 0.3.74</li>
<li><a
href="https://github.com/rust-lang/backtrace-rs/commit/230570f2dac80a601f5c0b30da00cc9480bd35eb"><code>230570f</code></a>
Merge pull request <a
href="https://redirect.github.com/rust-lang/backtrace-rs/issues/660">#660</a>
from workingjubilee/dont-unsoundly-iterate-phdr</li>
<li><a
href="https://github.com/rust-lang/backtrace-rs/commit/153f510013e9d486103dac7994d7f75205af397a"><code>153f510</code></a>
Do not destructure maybe-uninit fields</li>
<li><a
href="https://github.com/rust-lang/backtrace-rs/commit/38589464ed3a901794f5858ccbd7f996f6712f64"><code>3858946</code></a>
Revise dl_iterate_phdr callback to be sound-ish</li>
<li><a
href="https://github.com/rust-lang/backtrace-rs/commit/7d062c63749a4c07d9307c96b6cd9485ccd1ad18"><code>7d062c6</code></a><code>rust-lang/backtrace-rs#653</code></li>
<li><a
href="https://github.com/rust-lang/backtrace-rs/commit/fc37b22dc8a384d93f6b7b4817266eec6433875e"><code>fc37b22</code></a><code>rust-lang/backtrace-rs#657</code></li>
<li><a
href="https://github.com/rust-lang/backtrace-rs/commit/600beaa5074be0f40279584450d995c319061ce8"><code>600beaa</code></a><code>rust-lang/backtrace-rs#648</code></li>
<li><a
href="https://github.com/rust-lang/backtrace-rs/commit/84b6c1d56f4bd1b4297187db863c2db6d436c1cf"><code>84b6c1d</code></a><code>rust-lang/backtrace-rs#652</code></li>
<li><a
href="https://github.com/rust-lang/backtrace-rs/commit/95c3bacab9364620864208b651e77a524900480d"><code>95c3bac</code></a>
Make enum
<code>print::PrintFmt</code><code>rust-lang/backtrace-rs#651</code></li>
<li>Additional commits viewable in <a
href="https://github.com/rust-lang/backtrace-rs/compare/0.3.73...0.3.74">compare
view</a></li>
</ul>
</details>
<br />

Updates `bytes` from 1.7.1 to 1.7.2
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/tokio-rs/bytes/releases">bytes's
releases</a>.</em></p>
<blockquote>
<h2>Bytes 1.7.2</h2>
<h1>1.7.2 (September 17, 2024)</h1>
<h3>Fixed</h3>
<ul>
<li>Fix default impl of <code>Buf::{get_int, get_int_le}</code> (<a
href="https://redirect.github.com/tokio-rs/bytes/issues/732">#732</a>)</li>
</ul>
<h3>Documented</h3>
<ul>
<li>Fix double spaces in comments and doc comments (<a
href="https://redirect.github.com/tokio-rs/bytes/issues/731">#731</a>)</li>
</ul>
<h3>Internal changes</h3>
<ul>
<li>Ensure BytesMut::advance reduces capacity (<a
href="https://redirect.github.com/tokio-rs/bytes/issues/728">#728</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/tokio-rs/bytes/blob/master/CHANGELOG.md">bytes's
changelog</a>.</em></p>
<blockquote>
<h1>1.7.2 (September 17, 2024)</h1>
<h3>Fixed</h3>
<ul>
<li>Fix default impl of <code>Buf::{get_int, get_int_le}</code> (<a
href="https://redirect.github.com/tokio-rs/bytes/issues/732">#732</a>)</li>
</ul>
<h3>Documented</h3>
<ul>
<li>Fix double spaces in comments and doc comments (<a
href="https://redirect.github.com/tokio-rs/bytes/issues/731">#731</a>)</li>
</ul>
<h3>Internal changes</h3>
<ul>
<li>Ensure BytesMut::advance reduces capacity (<a
href="https://redirect.github.com/tokio-rs/bytes/issues/728">#728</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/tokio-rs/bytes/commit/d7c1d658d90c922eeee1dbc29bc6f6fd9a1a1a66"><code>d7c1d65</code></a>
chore: prepare bytes v1.7.2 (<a
href="https://redirect.github.com/tokio-rs/bytes/issues/736">#736</a>)</li>
<li><a
href="https://github.com/tokio-rs/bytes/commit/ac46ebdd464144cecd7463a96ca9eb347458ae94"><code>ac46ebd</code></a>
ci: update nightly to nightly-2024-09-15 (<a
href="https://redirect.github.com/tokio-rs/bytes/issues/734">#734</a>)</li>
<li><a
href="https://github.com/tokio-rs/bytes/commit/79fb85323cf4cf14d9b85f487b65fc147030cf4b"><code>79fb853</code></a>
fix: apply sign extension when decoding int (<a
href="https://redirect.github.com/tokio-rs/bytes/issues/732">#732</a>)</li>
<li><a
href="https://github.com/tokio-rs/bytes/commit/291df5acc94b82a48765e67eeb1c1a2074539e68"><code>291df5a</code></a>
Fix double spaces in comments and doc comments (<a
href="https://redirect.github.com/tokio-rs/bytes/issues/731">#731</a>)</li>
<li><a
href="https://github.com/tokio-rs/bytes/commit/ed7d5ff39e39c2802c0fa9e2fc308f6a3e0beda7"><code>ed7d5ff</code></a>
test: ensure BytesMut::advance reduces capacity (<a
href="https://redirect.github.com/tokio-rs/bytes/issues/728">#728</a>)</li>
<li>See full diff in <a
href="https://github.com/tokio-rs/bytes/compare/v1.7.1...v1.7.2">compare
view</a></li>
</ul>
</details>
<br />

Updates `cc` from 1.1.14 to 1.1.22
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/rust-lang/cc-rs/releases">cc's
releases</a>.</em></p>
<blockquote>
<h2>cc-v1.1.22</h2>
<h3>Other</h3>
<ul>
<li>Don't rerun if PATH changes (<a
href="https://redirect.github.com/rust-lang/cc-rs/pull/1215">#1215</a>)</li>
</ul>
<h2>cc-v1.1.21</h2>
<h3>Other</h3>
<ul>
<li>disable pic for targets that end in <code>-none</code> (<a
href="https://redirect.github.com/rust-lang/cc-rs/pull/1212">#1212</a>)</li>
</ul>
<h2>cc-v1.1.20</h2>
<h3>Other</h3>
<ul>
<li>Add buildcache as known Rust and C/C++ compiler wrapper (<a
href="https://redirect.github.com/rust-lang/cc-rs/pull/1209">#1209</a>)</li>
</ul>
<h2>cc-v1.1.19</h2>
<h3>Other</h3>
<ul>
<li>Add support arm64e-apple-darwin (<a
href="https://redirect.github.com/rust-lang/cc-rs/pull/1207">#1207</a>)</li>
</ul>
<h2>cc-v1.1.18</h2>
<h3>Other</h3>
<ul>
<li>Fixed unsoundness in <code>StderrForwarder::forward_available</code>
(<a
href="https://redirect.github.com/rust-lang/cc-rs/pull/1203">#1203</a>)</li>
</ul>
<h2>cc-v1.1.17</h2>
<h3>Fixed</h3>
<ul>
<li>fix finding toolchains when invoked by msbuild (<a
href="https://redirect.github.com/rust-lang/cc-rs/pull/1201">#1201</a>)</li>
</ul>
<h2>cc-v1.1.16</h2>
<h3>Other</h3>
<ul>
<li>Treat VxWorks wr-cc as a Gnu compiler (<a
href="https://redirect.github.com/rust-lang/cc-rs/pull/1198">#1198</a>)</li>
</ul>
<h2>cc-v1.1.15</h2>
<h3>Other</h3>
<ul>
<li>Add -mfloat-abi=hard as a default argument when using any
arm/thumb-none-eabihf target (<a
href="https://redirect.github.com/rust-lang/cc-rs/pull/1194">#1194</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/rust-lang/cc-rs/blob/main/CHANGELOG.md">cc's
changelog</a>.</em></p>
<blockquote>
<h2><a
href="https://github.com/rust-lang/cc-rs/compare/cc-v1.1.21...cc-v1.1.22">1.1.22</a>
- 2024-09-27</h2>
<h3>Other</h3>
<ul>
<li>Don't rerun if PATH changes (<a
href="https://redirect.github.com/rust-lang/cc-rs/pull/1215">#1215</a>)</li>
</ul>
<h2><a
href="https://github.com/rust-lang/cc-rs/compare/cc-v1.1.20...cc-v1.1.21">1.1.21</a>
- 2024-09-18</h2>
<h3>Other</h3>
<ul>
<li>disable pic for targets that end in <code>-none</code> (<a
href="https://redirect.github.com/rust-lang/cc-rs/pull/1212">#1212</a>)</li>
</ul>
<h2><a
href="https://github.com/rust-lang/cc-rs/compare/cc-v1.1.19...cc-v1.1.20">1.1.20</a>
- 2024-09-17</h2>
<h3>Other</h3>
<ul>
<li>Add buildcache as known Rust and C/C++ compiler wrapper (<a
href="https://redirect.github.com/rust-lang/cc-rs/pull/1209">#1209</a>)</li>
</ul>
<h2><a
href="https://github.com/rust-lang/cc-rs/compare/cc-v1.1.18...cc-v1.1.19">1.1.19</a>
- 2024-09-15</h2>
<h3>Other</h3>
<ul>
<li>Add support arm64e-apple-darwin (<a
href="https://redirect.github.com/rust-lang/cc-rs/pull/1207">#1207</a>)</li>
</ul>
<h2><a
href="https://github.com/rust-lang/cc-rs/compare/cc-v1.1.17...cc-v1.1.18">1.1.18</a>
- 2024-09-07</h2>
<h3>Other</h3>
<ul>
<li>Fixed unsoundness in <code>StderrForwarder::forward_available</code>
(<a
href="https://redirect.github.com/rust-lang/cc-rs/pull/1203">#1203</a>)</li>
</ul>
<h2><a
href="https://github.com/rust-lang/cc-rs/compare/cc-v1.1.16...cc-v1.1.17">1.1.17</a>
- 2024-09-06</h2>
<h3>Fixed</h3>
<ul>
<li>fix finding toolchains when invoked by msbuild (<a
href="https://redirect.github.com/rust-lang/cc-rs/pull/1201">#1201</a>)</li>
</ul>
<h2><a
href="https://github.com/rust-lang/cc-rs/compare/cc-v1.1.15...cc-v1.1.16">1.1.16</a>
- 2024-09-04</h2>
<h3>Other</h3>
<ul>
<li>Treat VxWorks wr-cc as a Gnu compiler (<a
href="https://redirect.github.com/rust-lang/cc-rs/pull/1198">#1198</a>)</li>
</ul>
<h2><a
href="https://github.com/rust-lang/cc-rs/compare/cc-v1.1.14...cc-v1.1.15">1.1.15</a>
- 2024-08-26</h2>
<h3>Other</h3>
<ul>
<li>Add -mfloat-abi=hard as a default argument when using any
arm/thumb-none-eabihf target (<a
href="https://redirect.github.com/rust-lang/cc-rs/pull/1194">#1194</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/rust-lang/cc-rs/commit/5f5e1c8c18b53aa1524f720ce21b5a7986a0bf6b"><code>5f5e1c8</code></a>
chore: release (<a
href="https://redirect.github.com/rust-lang/cc-rs/issues/1216">#1216</a>)</li>
<li><a
href="https://github.com/rust-lang/cc-rs/commit/71c672b4afa2f9b6e5046a963d3b5bc1f9ccd2f8"><code>71c672b</code></a>
Don't rerun if PATH changes (<a
href="https://redirect.github.com/rust-lang/cc-rs/issues/1215">#1215</a>)</li>
<li><a
href="https://github.com/rust-lang/cc-rs/commit/748b777e553af972fb0484ece2626beaa354e0a2"><code>748b777</code></a>
chore: release (<a
href="https://redirect.github.com/rust-lang/cc-rs/issues/1213">#1213</a>)</li>
<li><a
href="https://github.com/rust-lang/cc-rs/commit/270ec653371a12498c3a338fb8b4a5d35e8388c6"><code>270ec65</code></a>
disable pic for targets that end in <code>-none</code> (<a
href="https://redirect.github.com/rust-lang/cc-rs/issues/1212">#1212</a>)</li>
<li><a
href="https://github.com/rust-lang/cc-rs/commit/92a5e28c084aefc101d2f71f236614d9fcaa1f9e"><code>92a5e28</code></a>
chore: release (<a
href="https://redirect.github.com/rust-lang/cc-rs/issues/1210">#1210</a>)</li>
<li><a
href="https://github.com/rust-lang/cc-rs/commit/dab5d7adb4c090ac9d8650e7d97897a711ac7a14"><code>dab5d7a</code></a>
Add buildcache as known Rust and C/C++ compiler wrapper (<a
href="https://redirect.github.com/rust-lang/cc-rs/issues/1209">#1209</a>)</li>
<li><a
href="https://github.com/rust-lang/cc-rs/commit/c0b3eae28300fc8b36eb3a0b519ef4083f1a129e"><code>c0b3eae</code></a>
chore: release (<a
href="https://redirect.github.com/rust-lang/cc-rs/issues/1208">#1208</a>)</li>
<li><a
href="https://github.com/rust-lang/cc-rs/commit/278a606afb79b00cfe7a1372dbaa3529ecce3dc4"><code>278a606</code></a>
Add support arm64e-apple-darwin (<a
href="https://redirect.github.com/rust-lang/cc-rs/issues/1207">#1207</a>)</li>
<li><a
href="https://github.com/rust-lang/cc-rs/commit/668facdbbcade9ebfb48c8ea0b658fc2688c4e5c"><code>668facd</code></a>
chore: release (<a
href="https://redirect.github.com/rust-lang/cc-rs/issues/1204">#1204</a>)</li>
<li><a
href="https://github.com/rust-lang/cc-rs/commit/5e161c6f4452fe63985bdfc78462ceda94c99805"><code>5e161c6</code></a>
Fixed unsoundness in <code>StderrForwarder::forward_available</code> (<a
href="https://redirect.github.com/rust-lang/cc-rs/issues/1203">#1203</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/rust-lang/cc-rs/compare/cc-v1.1.14...cc-v1.1.22">compare
view</a></li>
</ul>
</details>
<br />

Updates `clap_builder` from 4.5.15 to 4.5.18
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/clap-rs/clap/releases">clap_builder's
releases</a>.</em></p>
<blockquote>
<h2>v4.5.18</h2>
<h2>[4.5.18] - 2024-09-20</h2>
<h3>Features</h3>
<ul>
<li><em>(builder)</em> Expose <code>Arg::get_display_order</code> and
<code>Command::get_display_order</code></li>
</ul>
<h2>v4.5.17</h2>
<h2>[4.5.17] - 2024-09-04</h2>
<h3>Fixes</h3>
<ul>
<li><em>(help)</em> Style required argument groups</li>
<li><em>(derive)</em> Improve error messages when unsupported fields are
used</li>
</ul>
<h2>v4.5.16</h2>
<h2>[4.5.16] - 2024-08-15</h2>
<h3>Fixes</h3>
<ul>
<li><em>(derive)</em> Improve error messages when <code>derive</code>
feature is missing</li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/clap-rs/clap/blob/master/CHANGELOG.md">clap_builder's
changelog</a>.</em></p>
<blockquote>
<h2>[4.5.18] - 2024-09-20</h2>
<h3>Features</h3>
<ul>
<li><em>(builder)</em> Expose <code>Arg::get_display_order</code> and
<code>Command::get_display_order</code></li>
</ul>
<h2>[4.5.17] - 2024-09-04</h2>
<h3>Fixes</h3>
<ul>
<li><em>(help)</em> Style required argument groups</li>
<li><em>(derive)</em> Improve error messages when unsupported fields are
used</li>
</ul>
<h2>[4.5.16] - 2024-08-15</h2>
<h3>Fixes</h3>
<ul>
<li><em>(derive)</em> Improve error messages when <code>derive</code>
feature is missing</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/clap-rs/clap/commit/0d142f6c04a702b791d2dfec8327661ba1b6d16c"><code>0d142f6</code></a>
chore: Release</li>
<li><a
href="https://github.com/clap-rs/clap/commit/0facf1f370e7966a4d97bce56d1d10ca4c80d0ae"><code>0facf1f</code></a>
docs: Update changelog</li>
<li><a
href="https://github.com/clap-rs/clap/commit/ee6af99c6c5e239c0f2c92f9d1baf8aa3bb4af90"><code>ee6af99</code></a>
Merge pull request <a
href="https://redirect.github.com/clap-rs/clap/issues/5743">#5743</a>
from epage/sort</li>
<li><a
href="https://github.com/clap-rs/clap/commit/232ee106615e997f0841bb3de97eed126b929fe3"><code>232ee10</code></a>
fix(complete): Use existing display order for Arg/Command</li>
<li><a
href="https://github.com/clap-rs/clap/commit/c6b5d627a0c17527630e4086a4fe83589365d1f0"><code>c6b5d62</code></a>
feat(builder): Expose get_display_order</li>
<li><a
href="https://github.com/clap-rs/clap/commit/67d9fef9cee8f1b297aed73e6d95f78744b43a27"><code>67d9fef</code></a>
feat(complete): Give control over display order</li>
<li><a
href="https://github.com/clap-rs/clap/commit/59a61e188fbb9999db52f567e3951d3720204084"><code>59a61e1</code></a>
refactor(complete): Pull out common candidate code</li>
<li><a
href="https://github.com/clap-rs/clap/commit/144879194081212046d5566572bfa15ea9bcca35"><code>1448791</code></a>
fix(complete): Specify tags for built-in candiates</li>
<li><a
href="https://github.com/clap-rs/clap/commit/a4aa5dffdf46a2975f2b2d51ce7e618e19250ead"><code>a4aa5df</code></a>
feat(complete): Group by tag</li>
<li><a
href="https://github.com/clap-rs/clap/commit/a126149a809f01586ccb6d9299eb2fc2c87d8fe0"><code>a126149</code></a>
refactor(complete): Remove redundant dedup</li>
<li>Additional commits viewable in <a
href="https://github.com/clap-rs/clap/compare/v4.5.15...v4.5.18">compare
view</a></li>
</ul>
</details>
<br />

Updates `clap_derive` from 4.5.13 to 4.5.18
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/clap-rs/clap/releases">clap_derive's
releases</a>.</em></p>
<blockquote>
<h2>v4.5.18</h2>
<h2>[4.5.18] - 2024-09-20</h2>
<h3>Features</h3>
<ul>
<li><em>(builder)</em> Expose <code>Arg::get_display_order</code> and
<code>Command::get_display_order</code></li>
</ul>
<h2>v4.5.17</h2>
<h2>[4.5.17] - 2024-09-04</h2>
<h3>Fixes</h3>
<ul>
<li><em>(help)</em> Style required argument groups</li>
<li><em>(derive)</em> Improve error messages when unsupported fields are
used</li>
</ul>
<h2>v4.5.16</h2>
<h2>[4.5.16] - 2024-08-15</h2>
<h3>Fixes</h3>
<ul>
<li><em>(derive)</em> Improve error messages when <code>derive</code>
feature is missing</li>
</ul>
<h2>v4.5.15</h2>
<h2>[4.5.15] - 2024-08-10</h2>
<h3>Compatiblity</h3>
<ul>
<li><em>(unstable-ext)</em> <code>Arg::remove</code> changed return
types</li>
</ul>
<h3>Fixes</h3>
<ul>
<li><em>(unstable-ext)</em> Make <code>Arg::remove</code> return the
removed item</li>
</ul>
<h2>v4.5.14</h2>
<h2>[4.5.14] - 2024-08-08</h2>
<h3>Features</h3>
<ul>
<li><em>(unstable-ext)</em> Added <code>Arg::add</code> for attaching
arbitrary state, like completion hints, to <code>Arg</code> without
<code>Arg</code> knowing about it</li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/clap-rs/clap/blob/master/CHANGELOG.md">clap_derive's
changelog</a>.</em></p>
<blockquote>
<h2>[4.5.18] - 2024-09-20</h2>
<h3>Features</h3>
<ul>
<li><em>(builder)</em> Expose <code>Arg::get_display_order</code> and
<code>Command::get_display_order</code></li>
</ul>
<h2>[4.5.17] - 2024-09-04</h2>
<h3>Fixes</h3>
<ul>
<li><em>(help)</em> Style required argument groups</li>
<li><em>(derive)</em> Improve error messages when unsupported fields are
used</li>
</ul>
<h2>[4.5.16] - 2024-08-15</h2>
<h3>Fixes</h3>
<ul>
<li><em>(derive)</em> Improve error messages when <code>derive</code>
feature is missing</li>
</ul>
<h2>[4.5.15] - 2024-08-10</h2>
<h3>Compatiblity</h3>
<ul>
<li><em>(unstable-ext)</em> <code>Arg::remove</code> changed return
types</li>
</ul>
<h3>Fixes</h3>
<ul>
<li><em>(unstable-ext)</em> Make <code>Arg::remove</code> return the
removed item</li>
</ul>
<h2>[4.5.14] - 2024-08-08</h2>
<h3>Features</h3>
<ul>
<li><em>(unstable-ext)</em> Added <code>Arg::add</code> for attaching
arbitrary state, like completion hints, to <code>Arg</code> without
<code>Arg</code> knowing about it</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/clap-rs/clap/commit/0d142f6c04a702b791d2dfec8327661ba1b6d16c"><code>0d142f6</code></a>
chore: Release</li>
<li><a
href="https://github.com/clap-rs/clap/commit/0facf1f370e7966a4d97bce56d1d10ca4c80d0ae"><code>0facf1f</code></a>
docs: Update changelog</li>
<li><a
href="https://github.com/clap-rs/clap/commit/ee6af99c6c5e239c0f2c92f9d1baf8aa3bb4af90"><code>ee6af99</code></a>
Merge pull request <a
href="https://redirect.github.com/clap-rs/clap/issues/5743">#5743</a>
from epage/sort</li>
<li><a
href="https://github.com/clap-rs/clap/commit/232ee106615e997f0841bb3de97eed126b929fe3"><code>232ee10</code></a>
fix(complete): Use existing display order for Arg/Command</li>
<li><a
href="https://github.com/clap-rs/clap/commit/c6b5d627a0c17527630e4086a4fe83589365d1f0"><code>c6b5d62</code></a>
feat(builder): Expose get_display_order</li>
<li><a
href="https://github.com/clap-rs/clap/commit/67d9fef9cee8f1b297aed73e6d95f78744b43a27"><code>67d9fef</code></a>
feat(complete): Give control over display order</li>
<li><a
href="https://github.com/clap-rs/clap/commit/59a61e188fbb9999db52f567e3951d3720204084"><code>59a61e1</code></a>
refactor(complete): Pull out common candidate code</li>
<li><a
href="https://github.com/clap-rs/clap/commit/144879194081212046d5566572bfa15ea9bcca35"><code>1448791</code></a>
fix(complete): Specify tags for built-in candiates</li>
<li><a
href="https://github.com/clap-rs/clap/commit/a4aa5dffdf46a2975f2b2d51ce7e618e19250ead"><code>a4aa5df</code></a>
feat(complete): Group by tag</li>
<li><a
href="https://github.com/clap-rs/clap/commit/a126149a809f01586ccb6d9299eb2fc2c87d8fe0"><code>a126149</code></a>
refactor(complete): Remove redundant dedup</li>
<li>Additional commits viewable in <a
href="https://github.com/clap-rs/clap/compare/v4.5.13...v4.5.18">compare
view</a></li>
</ul>
</details>
<br />

Updates `const_format_proc_macros` from 0.2.32 to 0.2.33
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/rodrimati1992/const_format_crates/blob/master/Changelog.md">const_format_proc_macros's
changelog</a>.</em></p>
<blockquote>
<h3>0.2.33</h3>
<p>Fixed Rust Analyzer style warning for assertion macros.</p>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li>See full diff in <a
href="https://github.com/rodrimati1992/const_format_crates/commits">compare
view</a></li>
</ul>
</details>
<br />

Updates `cpufeatures` from 0.2.13 to 0.2.14
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/RustCrypto/utils/commit/6a87dce97c9f927bea999ab957ccb6bc60a6c36f"><code>6a87dce</code></a>
cpufeatures v0.2.14 (<a
href="https://redirect.github.com/RustCrypto/utils/issues/1104">#1104</a>)</li>
<li><a
href="https://github.com/RustCrypto/utils/commit/4be67893ccece4823b606c5e29eccd44f7e07450"><code>4be6789</code></a>
aarch64-dit: initial crate (<a
href="https://redirect.github.com/RustCrypto/utils/issues/1102">#1102</a>)</li>
<li><a
href="https://github.com/RustCrypto/utils/commit/141756093ae5ee316af9cd3b459d4c5225bc86dd"><code>1417560</code></a>
README.md(s): use img.shields.io crate version badges</li>
<li><a
href="https://github.com/RustCrypto/utils/commit/cfa21ea50a22df26a52e17649e203e0c2657154d"><code>cfa21ea</code></a>
cpufeatures: add DIT support for AArch64 Linux targets (<a
href="https://redirect.github.com/RustCrypto/utils/issues/1101">#1101</a>)</li>
<li><a
href="https://github.com/RustCrypto/utils/commit/1ad40787ec88039f829144ef59b7bc506eaf07ed"><code>1ad4078</code></a>
cpufeatures: add support for DIT detection on Apple silicon (<a
href="https://redirect.github.com/RustCrypto/utils/issues/1100">#1100</a>)</li>
<li><a
href="https://github.com/RustCrypto/utils/commit/5d46aba5ef3720e854f48d93243c247e4611b125"><code>5d46aba</code></a>
block-buffer: release v0.11.0-rc.1 (<a
href="https://redirect.github.com/RustCrypto/utils/issues/1098">#1098</a>)</li>
<li>See full diff in <a
href="https://github.com/RustCrypto/utils/compare/cpufeatures-v0.2.13...cpufeatures-v0.2.14">compare
view</a></li>
</ul>
</details>
<br />

Updates `fastrand` from 2.1.0 to 2.1.1
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/smol-rs/fastrand/releases">fastrand's
releases</a>.</em></p>
<blockquote>
<h2>v2.1.1</h2>
<ul>
<li>Remove support for 128-bit targets, as they are not supported by
rustc yet. (<a
href="https://redirect.github.com/smol-rs/fastrand/issues/87">#87</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/smol-rs/fastrand/blob/master/CHANGELOG.md">fastrand's
changelog</a>.</em></p>
<blockquote>
<h1>Version 2.1.1</h1>
<ul>
<li>Remove support for 128-bit targets, as they are not supported by
rustc yet. (<a
href="https://redirect.github.com/smol-rs/fastrand/issues/87">#87</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/smol-rs/fastrand/commit/9d1a66fe46cee30e6c716812a9df467c653fa290"><code>9d1a66f</code></a>
v2.1.1</li>
<li><a
href="https://github.com/smol-rs/fastrand/commit/d05504dee3e2ec359fca62db9353de2ad3dfff40"><code>d05504d</code></a>
bugfix: Remove 128-bit value generator</li>
<li><a
href="https://github.com/smol-rs/fastrand/commit/7e60c7f688f9be3dcd4f59f216c87dac88ca2902"><code>7e60c7f</code></a>
chore: Forgot to bump the version</li>
<li>See full diff in <a
href="https://github.com/smol-rs/fastrand/compare/v2.1.0...v2.1.1">compare
view</a></li>
</ul>
</details>
<br />

Updates `flate2` from 1.0.32 to 1.0.34
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/rust-lang/flate2-rs/releases">flate2's
releases</a>.</em></p>
<blockquote>
<h2>1.0.34</h2>
<h2>What's Changed</h2>
<ul>
<li>Add minimum build test back in to CI by <a
href="https://github.com/jongiddy"><code>@​jongiddy</code></a> in <a
href="https://redirect.github.com/rust-lang/flate2-rs/pull/426">rust-lang/flate2-rs#426</a></li>
<li>docs: fix compression level range from 0-9 to 0-10 by <a
href="https://github.com/ByteBaker"><code>@​ByteBaker</code></a> in <a
href="https://redirect.github.com/rust-lang/flate2-rs/pull/427">rust-lang/flate2-rs#427</a></li>
<li>Document backend differences in compression levels by <a
href="https://github.com/Shnatsel"><code>@​Shnatsel</code></a> in <a
href="https://redirect.github.com/rust-lang/flate2-rs/pull/430">rust-lang/flate2-rs#430</a></li>
<li>Upgrade zlib-rs to 0.3.0 to get multiple bugfixes by <a
href="https://github.com/Shnatsel"><code>@​Shnatsel</code></a> in <a
href="https://redirect.github.com/rust-lang/flate2-rs/pull/428">rust-lang/flate2-rs#428</a></li>
<li>Better wording in compression level docs by <a
href="https://github.com/Shnatsel"><code>@​Shnatsel</code></a> in <a
href="https://redirect.github.com/rust-lang/flate2-rs/pull/431">rust-lang/flate2-rs#431</a></li>
</ul>
<h2>New Contributors</h2>
<ul>
<li><a href="https://github.com/ByteBaker"><code>@​ByteBaker</code></a>
made their first contribution in <a
href="https://redirect.github.com/rust-lang/flate2-rs/pull/427">rust-lang/flate2-rs#427</a></li>
<li><a href="https://github.com/Shnatsel"><code>@​Shnatsel</code></a>
made their first contribution in <a
href="https://redirect.github.com/rust-lang/flate2-rs/pull/430">rust-lang/flate2-rs#430</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/rust-lang/flate2-rs/compare/1.0.33...1.0.34">https://github.com/rust-lang/flate2-rs/compare/1.0.33...1.0.34</a></p>
<h2>1.0.33 - fix minimal manifest versions</h2>
<h2>What's Changed</h2>
<ul>
<li>Fix msrv: Run msrv checks with minimal versions by <a
href="https://github.com/NobodyXu"><code>@​NobodyXu</code></a> in <a
href="https://redirect.github.com/rust-lang/flate2-rs/pull/425">rust-lang/flate2-rs#425</a></li>
</ul>
<h2>New Contributors</h2>
<ul>
<li><a href="https://github.com/NobodyXu"><code>@​NobodyXu</code></a>
made their first contribution in <a
href="https://redirect.github.com/rust-lang/flate2-rs/pull/425">rust-lang/flate2-rs#425</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/rust-lang/flate2-rs/compare/1.0.32...1.0.33">https://github.com/rust-lang/flate2-rs/compare/1.0.32...1.0.33</a></p>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/rust-lang/flate2-rs/commit/1a28821dc116dac14178858be056e4a58ef8f501"><code>1a28821</code></a>
Merge pull request <a
href="https://redirect.github.com/rust-lang/flate2-rs/issues/431">#431</a>
from Shnatsel/better-wording</li>
<li><a
href="https://github.com/rust-lang/flate2-rs/commit/2c29780e5093b10c21954384cd97243770376814"><code>2c29780</code></a>
Merge pull request <a
href="https://redirect.github.com/rust-lang/flate2-rs/issues/428">#428</a>
from Shnatsel/upgrade-zlib-rs</li>
<li><a
href="https://github.com/rust-lang/flate2-rs/commit/423981aede8670a51d2c3aa657ae528152c0f64e"><code>423981a</code></a>
Better wording in compression level docs</li>
<li><a
href="https://github.com/rust-lang/flate2-rs/commit/da5c8cfd917b0ec2aeacc2e514b27b6bd50726e4"><code>da5c8cf</code></a>
Bump version</li>
<li><a
href="https://github.com/rust-lang/flate2-rs/commit/eeee4c641187628ec8676ffb24300c5da6bfb066"><code>eeee4c6</code></a>
Merge pull request <a
href="https://redirect.github.com/rust-lang/flate2-rs/issues/430">#430</a>
from Shnatsel/detailed-level-docs</li>
<li><a
href="https://github.com/rust-lang/flate2-rs/commit/731df32113188f3372367402b9ea2b…
itswill00 pushed a commit to itswill00/KernelSU-Next-4.14 that referenced this pull request Jan 19, 2025
…tiann#2098)

Bumps the crates group with 25 updates in the /userspace/ksud directory:

| Package | From | To |
| --- | --- | --- |
| [anyhow](https://github.com/dtolnay/anyhow) | `1.0.86` | `1.0.89` |
| [clap](https://github.com/clap-rs/clap) | `4.5.16` | `4.5.18` |
| [const_format](https://github.com/rodrimati1992/const_format_crates) |
`0.2.32` | `0.2.33` |
| [serde](https://github.com/serde-rs/serde) | `1.0.208` | `1.0.210` |
| [serde_json](https://github.com/serde-rs/json) | `1.0.125` | `1.0.128`
|
| [libc](https://github.com/rust-lang/libc) | `0.2.158` | `0.2.159` |
| [is_executable](https://github.com/fitzgen/is_executable) | `1.0.1` |
`1.0.3` |
| [derive-new](https://github.com/nrc/derive-new) | `0.6.0` | `0.7.0` |
| [async-trait](https://github.com/dtolnay/async-trait) | `0.1.81` |
`0.1.83` |
| [autocfg](https://github.com/cuviper/autocfg) | `1.3.0` | `1.4.0` |
| [backtrace](https://github.com/rust-lang/backtrace-rs) | `0.3.73` |
`0.3.74` |
| [bytes](https://github.com/tokio-rs/bytes) | `1.7.1` | `1.7.2` |
| [cc](https://github.com/rust-lang/cc-rs) | `1.1.14` | `1.1.22` |
| [cpufeatures](https://github.com/RustCrypto/utils) | `0.2.13` |
`0.2.14` |
| [fastrand](https://github.com/smol-rs/fastrand) | `2.1.0` | `2.1.1` |
| [flate2](https://github.com/rust-lang/flate2-rs) | `1.0.32` | `1.0.34`
|
| [iana-time-zone](https://github.com/strawlab/iana-time-zone) |
`0.1.60` | `0.1.61` |
| [indexmap](https://github.com/indexmap-rs/indexmap) | `2.4.0` |
`2.5.0` |
| [object](https://github.com/gimli-rs/object) | `0.36.3` | `0.36.4` |
| [syn](https://github.com/dtolnay/syn) | `2.0.75` | `2.0.77` |
| [thiserror](https://github.com/dtolnay/thiserror) | `1.0.63` |
`1.0.64` |
| [tokio](https://github.com/tokio-rs/tokio) | `1.39.3` | `1.40.0` |
| [unicode-ident](https://github.com/dtolnay/unicode-ident) | `1.0.12` |
`1.0.13` |
| [unicode-width](https://github.com/unicode-rs/unicode-width) |
`0.1.13` | `0.1.14` |
| [unicode-xid](https://github.com/unicode-rs/unicode-xid) | `0.2.5` |
`0.2.6` |


Updates `anyhow` from 1.0.86 to 1.0.89
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/dtolnay/anyhow/releases">anyhow's
releases</a>.</em></p>
<blockquote>
<h2>1.0.89</h2>
<ul>
<li>Make anyhow::Error's <code>UnwindSafe</code> and
<code>RefUnwindSafe</code> impl consistently available between versions
of Rust newer and older than 1.72 (<a
href="https://redirect.github.com/dtolnay/anyhow/issues/386">#386</a>)</li>
</ul>
<h2>1.0.88</h2>
<ul>
<li>Documentation improvements</li>
</ul>
<h2>1.0.87</h2>
<ul>
<li>Support more APIs, including <code>Error::new</code> and
<code>Error::chain</code>, in no-std mode on Rust 1.81+ (<a
href="https://redirect.github.com/dtolnay/anyhow/issues/383">#383</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/dtolnay/anyhow/commit/9d3fb6d0968bd9f95a0d8bbc5269eb2496880510"><code>9d3fb6d</code></a>
Release 1.0.89</li>
<li><a
href="https://github.com/dtolnay/anyhow/commit/830c399126c1db902681130f5c4273d93767b990"><code>830c399</code></a>
Merge pull request <a
href="https://redirect.github.com/dtolnay/anyhow/issues/386">#386</a>
from dtolnay/unwindsafe</li>
<li><a
href="https://github.com/dtolnay/anyhow/commit/8454be372f2a7832436d7021b8f2f0a96db558b3"><code>8454be3</code></a>
Ensure UnwindSafe even with &quot;backtrace&quot; feature enabled and
old Rust</li>
<li><a
href="https://github.com/dtolnay/anyhow/commit/a85e414bf555ed961f59c2c69410e7b5f706df65"><code>a85e414</code></a>
Add more autotraits tests</li>
<li><a
href="https://github.com/dtolnay/anyhow/commit/139f266b903ac2eab462292495f864740446dcdc"><code>139f266</code></a>
Release 1.0.88</li>
<li><a
href="https://github.com/dtolnay/anyhow/commit/aa3ab2b9f0a8cdf4b54dae58d39a2446c5eecbb2"><code>aa3ab2b</code></a>
Merge pull request <a
href="https://redirect.github.com/dtolnay/anyhow/issues/385">#385</a>
from dtolnay/docnostd</li>
<li><a
href="https://github.com/dtolnay/anyhow/commit/44c37674d35a0899fde03ae2fdaeee0bd4c38501"><code>44c3767</code></a>
Update documentation on no-std error type conversions</li>
<li><a
href="https://github.com/dtolnay/anyhow/commit/afe93e7b167d069ac79f2c7f363b919d3793e6ce"><code>afe93e7</code></a>
Release 1.0.87</li>
<li><a
href="https://github.com/dtolnay/anyhow/commit/d58fa4b282c1149bd121419dd359eb8caf2c113d"><code>d58fa4b</code></a>
Fix outdated html_root_url</li>
<li><a
href="https://github.com/dtolnay/anyhow/commit/c18d80743cead05bd75cf2e310e7a00c515facb9"><code>c18d807</code></a>
Disable unused doc_cfg feature</li>
<li>Additional commits viewable in <a
href="https://github.com/dtolnay/anyhow/compare/1.0.86...1.0.89">compare
view</a></li>
</ul>
</details>
<br />

Updates `clap` from 4.5.16 to 4.5.18
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/clap-rs/clap/releases">clap's
releases</a>.</em></p>
<blockquote>
<h2>v4.5.18</h2>
<h2>[4.5.18] - 2024-09-20</h2>
<h3>Features</h3>
<ul>
<li><em>(builder)</em> Expose <code>Arg::get_display_order</code> and
<code>Command::get_display_order</code></li>
</ul>
<h2>v4.5.17</h2>
<h2>[4.5.17] - 2024-09-04</h2>
<h3>Fixes</h3>
<ul>
<li><em>(help)</em> Style required argument groups</li>
<li><em>(derive)</em> Improve error messages when unsupported fields are
used</li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/clap-rs/clap/blob/master/CHANGELOG.md">clap's
changelog</a>.</em></p>
<blockquote>
<h2>[4.5.18] - 2024-09-20</h2>
<h3>Features</h3>
<ul>
<li><em>(builder)</em> Expose <code>Arg::get_display_order</code> and
<code>Command::get_display_order</code></li>
</ul>
<h2>[4.5.17] - 2024-09-04</h2>
<h3>Fixes</h3>
<ul>
<li><em>(help)</em> Style required argument groups</li>
<li><em>(derive)</em> Improve error messages when unsupported fields are
used</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/clap-rs/clap/commit/d81158599f5b3a2434845a1731377eae84780b9a"><code>d811585</code></a>
chore: Release</li>
<li><a
href="https://github.com/clap-rs/clap/commit/ab948b35561b5bc64b50d6a52d799aa5ac5de187"><code>ab948b3</code></a>
docs: Update changelog</li>
<li><a
href="https://github.com/clap-rs/clap/commit/82e599e91d64ddae7231c98a91b4cd39e8c9036d"><code>82e599e</code></a>
Merge pull request <a
href="https://redirect.github.com/clap-rs/clap/issues/5602">#5602</a>
from shannmu/delimiter_values</li>
<li><a
href="https://github.com/clap-rs/clap/commit/59bf26dd56032a7a4e6d923cd37de6e72c33078e"><code>59bf26d</code></a>
feat(clap_complete): Support delimiter values in native completions</li>
<li><a
href="https://github.com/clap-rs/clap/commit/ccecab394b45bc4dd251d00b7d69737ed93d18f8"><code>ccecab3</code></a>
test(clap_complete): Add test cases for delimiter_values support</li>
<li><a
href="https://github.com/clap-rs/clap/commit/a3a476407b01f083dc06200783ad745bc45e5da8"><code>a3a4764</code></a>
docs(derive): Specify Parser::update_from semantics</li>
<li><a
href="https://github.com/clap-rs/clap/commit/df165a2da431138bcc5cd891aec922cbdeda6ded"><code>df165a2</code></a>
docs(derive): Flatten isn't just for update</li>
<li><a
href="https://github.com/clap-rs/clap/commit/5488bcfa30255c59f931f1248e854c0087b2b969"><code>5488bcf</code></a>
docs(derive): Connect more dots for Args/Subcommand</li>
<li><a
href="https://github.com/clap-rs/clap/commit/6013ad4f676dd25c5b5150557a5fb5698c3de020"><code>6013ad4</code></a>
chore: Release</li>
<li><a
href="https://github.com/clap-rs/clap/commit/f98e3ee215015055d776f91217019c33da78c975"><code>f98e3ee</code></a>
docs: Update changelog</li>
<li>Additional commits viewable in <a
href="https://github.com/clap-rs/clap/compare/clap_complete-v4.5.16...clap_complete-v4.5.18">compare
view</a></li>
</ul>
</details>
<br />

Updates `const_format` from 0.2.32 to 0.2.33
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/rodrimati1992/const_format_crates/blob/master/Changelog.md">const_format's
changelog</a>.</em></p>
<blockquote>
<h3>0.2.33</h3>
<p>Fixed Rust Analyzer style warning for assertion macros.</p>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li>See full diff in <a
href="https://github.com/rodrimati1992/const_format_crates/commits">compare
view</a></li>
</ul>
</details>
<br />

Updates `serde` from 1.0.208 to 1.0.210
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/serde-rs/serde/releases">serde's
releases</a>.</em></p>
<blockquote>
<h2>v1.0.210</h2>
<ul>
<li>Support serializing and deserializing <code>IpAddr</code> and
<code>SocketAddr</code> in no-std mode on Rust 1.77+ (<a
href="https://redirect.github.com/serde-rs/serde/issues/2816">#2816</a>,
thanks <a
href="https://github.com/MathiasKoch"><code>@​MathiasKoch</code></a>)</li>
<li>Make <code>serde::ser::StdError</code> and
<code>serde::de::StdError</code> equivalent to
<code>core::error::Error</code> on Rust 1.81+ (<a
href="https://redirect.github.com/serde-rs/serde/issues/2818">#2818</a>)</li>
</ul>
<h2>v1.0.209</h2>
<ul>
<li>Fix deserialization of empty structs and empty tuples inside of
untagged enums (<a
href="https://redirect.github.com/serde-rs/serde/issues/2805">#2805</a>,
thanks <a
href="https://github.com/Mingun"><code>@​Mingun</code></a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/serde-rs/serde/commit/89c4b02bf32ceae5b17d89f93a452ccc195ca038"><code>89c4b02</code></a>
Release 1.0.210</li>
<li><a
href="https://github.com/serde-rs/serde/commit/eeb8e44cda15f929796cd72241b0311e0bd04e67"><code>eeb8e44</code></a>
Merge pull request <a
href="https://redirect.github.com/serde-rs/serde/issues/2818">#2818</a>
from dtolnay/coreerror</li>
<li><a
href="https://github.com/serde-rs/serde/commit/785c2d9605ee73cc172dfd421228c1dccca984c9"><code>785c2d9</code></a>
Stabilize no-std StdError trait</li>
<li><a
href="https://github.com/serde-rs/serde/commit/d549f048e10bcb5e677afaf7b99d0ed3604b113b"><code>d549f04</code></a>
Reformat parse_ip_impl definition and calls</li>
<li><a
href="https://github.com/serde-rs/serde/commit/4c0dd63011434905265e2710bb9186e09e4f8ec2"><code>4c0dd63</code></a>
Delete attr support from core::net deserialization macros</li>
<li><a
href="https://github.com/serde-rs/serde/commit/26fb1341651c4e0ae4d58c675db3ca2a0d6e12c2"><code>26fb134</code></a>
Relocate cfg attrs out of parse_ip_impl and parse_socket_impl</li>
<li><a
href="https://github.com/serde-rs/serde/commit/07e614b52b5ab3387d86d3198e5f52cd1f5ff3cb"><code>07e614b</code></a>
Merge pull request <a
href="https://redirect.github.com/serde-rs/serde/issues/2817">#2817</a>
from dtolnay/corenet</li>
<li><a
href="https://github.com/serde-rs/serde/commit/b1f899fbe81f070803d9f7ca6e5d1cc3f19c9ea2"><code>b1f899f</code></a>
Delete doc(cfg) attribute from impls that are supported in no-std</li>
<li><a
href="https://github.com/serde-rs/serde/commit/b4f860e62767828beb3ef91721b6c56a31f9baad"><code>b4f860e</code></a>
Merge pull request <a
href="https://redirect.github.com/serde-rs/serde/issues/2816">#2816</a>
from MathiasKoch/chore/core-net</li>
<li><a
href="https://github.com/serde-rs/serde/commit/d940fe1b4934f097b0333dcb87bec5ee308d39cd"><code>d940fe1</code></a>
Reuse existing Buf wrapper as replacement for std::io::Write</li>
<li>Additional commits viewable in <a
href="https://github.com/serde-rs/serde/compare/v1.0.208...v1.0.210">compare
view</a></li>
</ul>
</details>
<br />

Updates `serde_json` from 1.0.125 to 1.0.128
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/serde-rs/json/releases">serde_json's
releases</a>.</em></p>
<blockquote>
<h2>1.0.128</h2>
<ul>
<li>Support serializing maps containing 128-bit integer keys to
serde_json::Value (<a
href="https://redirect.github.com/serde-rs/json/issues/1188">#1188</a>,
thanks <a
href="https://github.com/Mrreadiness"><code>@​Mrreadiness</code></a>)</li>
</ul>
<h2>1.0.127</h2>
<ul>
<li>Add more removal methods to OccupiedEntry (<a
href="https://redirect.github.com/serde-rs/json/issues/1179">#1179</a>,
thanks <a
href="https://github.com/GREsau"><code>@​GREsau</code></a>)</li>
</ul>
<h2>1.0.126</h2>
<ul>
<li>Improve string parsing on targets that use 32-bit pointers but also
have fast 64-bit integer arithmetic, such as
aarch64-unknown-linux-gnu_ilp32 and x86_64-unknown-linux-gnux32 (<a
href="https://redirect.github.com/serde-rs/json/issues/1182">#1182</a>,
thanks <a href="https://github.com/CryZe"><code>@​CryZe</code></a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/serde-rs/json/commit/d96b1d9b643b49a0bb92a8cf280daf6aa08f37cc"><code>d96b1d9</code></a>
Release 1.0.128</li>
<li><a
href="https://github.com/serde-rs/json/commit/599228d5dc52a0f1595fe4bd901821f70d0317a5"><code>599228d</code></a>
Merge pull request <a
href="https://redirect.github.com/serde-rs/json/issues/1188">#1188</a>
from Mrreadiness/feat/add-hashmap-key-128-serializer</li>
<li><a
href="https://github.com/serde-rs/json/commit/5416cee6c5ad355907f6e9d5f6039b994c69f768"><code>5416cee</code></a>
feat: add support for 128 bit HashMap key serialization</li>
<li><a
href="https://github.com/serde-rs/json/commit/27a4ca9d7a62394fe8f0103f3d91de59f055a4c4"><code>27a4ca9</code></a>
Upload CI Cargo.lock for reproducing failures</li>
<li><a
href="https://github.com/serde-rs/json/commit/5ebf65cc480f90714c94f82099ca9161d80cbb10"><code>5ebf65c</code></a>
Release 1.0.127</li>
<li><a
href="https://github.com/serde-rs/json/commit/f287a3b1a93ecb1a11cee31cb638bd9523a58add"><code>f287a3b</code></a>
Merge pull request 1179 from GREsau/patch-1</li>
<li><a
href="https://github.com/serde-rs/json/commit/ec980b02774abbff12fd3e26b0a1582eb14dcef7"><code>ec980b0</code></a>
Release 1.0.126</li>
<li><a
href="https://github.com/serde-rs/json/commit/e6282b0c479947805a33c7f167b1d19dd4c7ad4f"><code>e6282b0</code></a>
Merge pull request <a
href="https://redirect.github.com/serde-rs/json/issues/1184">#1184</a>
from serde-rs/fastarithmetic</li>
<li><a
href="https://github.com/serde-rs/json/commit/ffc4a43453029cdc5603cfe3ef08414488fd45de"><code>ffc4a43</code></a>
Improve cfg names for fast arithmetic</li>
<li><a
href="https://github.com/serde-rs/json/commit/4b1048d0ecc4d326d6657531689513f182a4f850"><code>4b1048d</code></a>
Merge pull request <a
href="https://redirect.github.com/serde-rs/json/issues/1183">#1183</a>
from serde-rs/arithmetic</li>
<li>Additional commits viewable in <a
href="https://github.com/serde-rs/json/compare/1.0.125...1.0.128">compare
view</a></li>
</ul>
</details>
<br />

Updates `libc` from 0.2.158 to 0.2.159
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/rust-lang/libc/releases">libc's
releases</a>.</em></p>
<blockquote>
<h2>0.2.159</h2>
<h3>Added</h3>
<ul>
<li>Android: add more <code>AT_*</code> constants in <a
href="https://redirect.github.com/rust-lang/libc/pull/3779">rust-lang/libc#3779</a></li>
<li>Apple: add missing <code>NOTE_*</code> constants in <a
href="https://redirect.github.com/rust-lang/libc/pull/3883">rust-lang/libc#3883</a></li>
<li>Hermit: add missing error numbers in <a
href="https://redirect.github.com/rust-lang/libc/pull/3858">rust-lang/libc#3858</a></li>
<li>Hurd: add <code>__timeval</code> for 64-bit support in <a
href="https://redirect.github.com/rust-lang/libc/pull/3786">rust-lang/libc#3786</a></li>
<li>Linux: add <code>epoll_pwait2</code> in <a
href="https://redirect.github.com/rust-lang/libc/pull/3868">rust-lang/libc#3868</a></li>
<li>Linux: add <code>mq_notify</code> in <a
href="https://redirect.github.com/rust-lang/libc/pull/3849">rust-lang/libc#3849</a></li>
<li>Linux: add missing <code>NFT_CT_*</code> constants in <a
href="https://redirect.github.com/rust-lang/libc/pull/3844">rust-lang/libc#3844</a></li>
<li>Linux: add the <code>fchmodat2</code> syscall in <a
href="https://redirect.github.com/rust-lang/libc/pull/3588">rust-lang/libc#3588</a></li>
<li>Linux: add the <code>mseal</code> syscall in <a
href="https://redirect.github.com/rust-lang/libc/pull/3798">rust-lang/libc#3798</a></li>
<li>OpenBSD: add <code>sendmmsg</code> and <code>recvmmsg</code> in <a
href="https://redirect.github.com/rust-lang/libc/pull/3831">rust-lang/libc#3831</a></li>
<li>Unix: add <code>IN6ADDR_ANY_INIT</code> and
<code>IN6ADDR_LOOPBACK_INIT</code> in <a
href="https://redirect.github.com/rust-lang/libc/pull/3693">rust-lang/libc#3693</a></li>
<li>VxWorks: add <code>S_ISVTX</code> in <a
href="https://redirect.github.com/rust-lang/libc/pull/3768">rust-lang/libc#3768</a></li>
<li>VxWorks: add <code>vxCpuLib</code> and <code>taskLib</code>
functions <a
href="https://redirect.github.com/rust-lang/libc/pull/3861">rust-lang/libc#3861</a></li>
<li>WASIp2: add definitions for <code>std::net</code> support in <a
href="https://redirect.github.com/rust-lang/libc/pull/3892">rust-lang/libc#3892</a></li>
</ul>
<h3>Fixed</h3>
<ul>
<li>Correctly handle version checks when <code>clippy-driver</code> is
used <a
href="https://redirect.github.com/rust-lang/libc/pull/3893">rust-lang/libc#3893</a></li>
</ul>
<h3>Changed</h3>
<ul>
<li>EspIdf: change signal constants to c_int in <a
href="https://redirect.github.com/rust-lang/libc/pull/3895">rust-lang/libc#3895</a></li>
<li>HorizonOS: update network definitions in <a
href="https://redirect.github.com/rust-lang/libc/pull/3863">rust-lang/libc#3863</a></li>
<li>Linux: combine <code>ioctl</code> APIs in <a
href="https://redirect.github.com/rust-lang/libc/pull/3722">rust-lang/libc#3722</a></li>
<li>WASI: enable CI testing in <a
href="https://redirect.github.com/rust-lang/libc/pull/3869">rust-lang/libc#3869</a></li>
<li>WASIp2: enable CI testing in <a
href="https://redirect.github.com/rust-lang/libc/pull/3870">rust-lang/libc#3870</a></li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/rust-lang/libc/blob/0.2.159/CHANGELOG.md">libc's
changelog</a>.</em></p>
<blockquote>
<h2><a
href="https://github.com/rust-lang/libc/compare/0.2.158...0.2.159">0.2.159</a>
- 2024-09-24</h2>
<h3>Added</h3>
<ul>
<li>Android: add more <code>AT_*</code> constants in <a
href="https://redirect.github.com/rust-lang/libc/pull/3779">rust-lang/libc#3779</a></li>
<li>Apple: add missing <code>NOTE_*</code> constants in <a
href="https://redirect.github.com/rust-lang/libc/pull/3883">rust-lang/libc#3883</a></li>
<li>Hermit: add missing error numbers in <a
href="https://redirect.github.com/rust-lang/libc/pull/3858">rust-lang/libc#3858</a></li>
<li>Hurd: add <code>__timeval</code> for 64-bit support in <a
href="https://redirect.github.com/rust-lang/libc/pull/3786">rust-lang/libc#3786</a></li>
<li>Linux: add <code>epoll_pwait2</code> in <a
href="https://redirect.github.com/rust-lang/libc/pull/3868">rust-lang/libc#3868</a></li>
<li>Linux: add <code>mq_notify</code> in <a
href="https://redirect.github.com/rust-lang/libc/pull/3849">rust-lang/libc#3849</a></li>
<li>Linux: add missing <code>NFT_CT_*</code> constants in <a
href="https://redirect.github.com/rust-lang/libc/pull/3844">rust-lang/libc#3844</a></li>
<li>Linux: add the <code>fchmodat2</code> syscall in <a
href="https://redirect.github.com/rust-lang/libc/pull/3588">rust-lang/libc#3588</a></li>
<li>Linux: add the <code>mseal</code> syscall in <a
href="https://redirect.github.com/rust-lang/libc/pull/3798">rust-lang/libc#3798</a></li>
<li>OpenBSD: add <code>sendmmsg</code> and <code>recvmmsg</code> in <a
href="https://redirect.github.com/rust-lang/libc/pull/3831">rust-lang/libc#3831</a></li>
<li>Unix: add <code>IN6ADDR_ANY_INIT</code> and
<code>IN6ADDR_LOOPBACK_INIT</code> in <a
href="https://redirect.github.com/rust-lang/libc/pull/3693">rust-lang/libc#3693</a></li>
<li>VxWorks: add <code>S_ISVTX</code> in <a
href="https://redirect.github.com/rust-lang/libc/pull/3768">rust-lang/libc#3768</a></li>
<li>VxWorks: add <code>vxCpuLib</code> and <code>taskLib</code>
functions <a
href="https://redirect.github.com/rust-lang/libc/pull/3861">rust-lang/libc#3861</a></li>
<li>WASIp2: add definitions for <code>std::net</code> support in <a
href="https://redirect.github.com/rust-lang/libc/pull/3892">rust-lang/libc#3892</a></li>
</ul>
<h3>Fixed</h3>
<ul>
<li>Correctly handle version checks when <code>clippy-driver</code> is
used <a
href="https://redirect.github.com/rust-lang/libc/pull/3893">rust-lang/libc#3893</a></li>
</ul>
<h3>Changed</h3>
<ul>
<li>EspIdf: change signal constants to c_int in <a
href="https://redirect.github.com/rust-lang/libc/pull/3895">rust-lang/libc#3895</a></li>
<li>HorizonOS: update network definitions in <a
href="https://redirect.github.com/rust-lang/libc/pull/3863">rust-lang/libc#3863</a></li>
<li>Linux: combine <code>ioctl</code> APIs in <a
href="https://redirect.github.com/rust-lang/libc/pull/3722">rust-lang/libc#3722</a></li>
<li>WASI: enable CI testing in <a
href="https://redirect.github.com/rust-lang/libc/pull/3869">rust-lang/libc#3869</a></li>
<li>WASIp2: enable CI testing in <a
href="https://redirect.github.com/rust-lang/libc/pull/3870">rust-lang/libc#3870</a></li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/rust-lang/libc/commit/7373a1abe57da20efae9fd2ca891d7b905c19e03"><code>7373a1a</code></a>
chore: release (<a
href="https://redirect.github.com/rust-lang/libc/issues/3862">#3862</a>)</li>
<li><a
href="https://github.com/rust-lang/libc/commit/48668be46be0dbc2d3dfcf942778c37a07d38a87"><code>48668be</code></a>
Merge pull request <a
href="https://redirect.github.com/rust-lang/libc/issues/3931">#3931</a>
from tgross35/backport-remove-tmp-file</li>
<li><a
href="https://github.com/rust-lang/libc/commit/28bb64b1fe678ca090f9af08d786949d53285940"><code>28bb64b</code></a>
Remove temporary file that was added by accident</li>
<li><a
href="https://github.com/rust-lang/libc/commit/a515d07dd95093bc1c3a7b716f0936d2d0b989db"><code>a515d07</code></a>
Merge pull request <a
href="https://redirect.github.com/rust-lang/libc/issues/3904">#3904</a>
from tgross35/backport-buildrs-fix</li>
<li><a
href="https://github.com/rust-lang/libc/commit/abcb8f87986c8f57a28c4f67d7939272f4f8cbad"><code>abcb8f8</code></a>
Simplify the RUSTC_WRAPPER check</li>
<li><a
href="https://github.com/rust-lang/libc/commit/507833559bd0bfe04b5139c1607c3dc3208174f5"><code>5078335</code></a>
Fix rustc version when <code>clippy-driver</code> is used</li>
<li><a
href="https://github.com/rust-lang/libc/commit/57a7d465fa69c85bb96c98c84762ada90ad02077"><code>57a7d46</code></a>
Merge pull request <a
href="https://redirect.github.com/rust-lang/libc/issues/3902">#3902</a>
from tgross35/backport-horizon-network</li>
<li><a
href="https://github.com/rust-lang/libc/commit/a3e88691a9a1a41867b0692b67cc50f5b1d39eb2"><code>a3e8869</code></a>
Revise network definitions for HorizonOS</li>
<li><a
href="https://github.com/rust-lang/libc/commit/fdd3a268960639b4714c2829976b87b374fa0f9f"><code>fdd3a26</code></a>
Merge pull request <a
href="https://redirect.github.com/rust-lang/libc/issues/3900">#3900</a>
from tgross35/espid-cherry-pick</li>
<li><a
href="https://github.com/rust-lang/libc/commit/35060e8eb0bd7a64722fc7ff8ef475f6b15384a9"><code>35060e8</code></a>
Merge pull request <a
href="https://redirect.github.com/rust-lang/libc/issues/3901">#3901</a>
from tgross35/backport-epoll_pwait2</li>
<li>Additional commits viewable in <a
href="https://github.com/rust-lang/libc/compare/0.2.158...0.2.159">compare
view</a></li>
</ul>
</details>
<br />

Updates `is_executable` from 1.0.1 to 1.0.3
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/fitzgen/is_executable/commit/cfe991224073cdab13ff6a8133d1cacd8182e21a"><code>cfe9912</code></a>
Bump to version 1.0.3</li>
<li><a
href="https://github.com/fitzgen/is_executable/commit/d6fcf2f526963b4e12ab063fca255bbe75bca178"><code>d6fcf2f</code></a>
Remove old test about README.md being in sync with module docs</li>
<li><a
href="https://github.com/fitzgen/is_executable/commit/95f27a6d3dae185ee1332728e959e4ff7c6890d9"><code>95f27a6</code></a>
Remove old CI</li>
<li><a
href="https://github.com/fitzgen/is_executable/commit/e70c103b81b5e5e7f25d7973605181cc622f2578"><code>e70c103</code></a>
Update badges in README</li>
<li><a
href="https://github.com/fitzgen/is_executable/commit/61d2e9ba8cf05a1410ca69fd157ca234c65a8af7"><code>61d2e9b</code></a>
Add github actions</li>
<li><a
href="https://github.com/fitzgen/is_executable/commit/001b334761623dcc0182dded9f1e3b949f7cf79a"><code>001b334</code></a>
Bump to version 1.0.2</li>
<li><a
href="https://github.com/fitzgen/is_executable/commit/fab168c19690b6247f9e983fd0e0d0d8599c3bef"><code>fab168c</code></a>
Merge pull request <a
href="https://redirect.github.com/fitzgen/is_executable/issues/14">#14</a>
from lucieleblanc/master</li>
<li><a
href="https://github.com/fitzgen/is_executable/commit/82f9c68782656eb9ec2fcad978fce3c9e60a3072"><code>82f9c68</code></a>
replace is_file() --&gt; exists() because symlinks are ok</li>
<li><a
href="https://github.com/fitzgen/is_executable/commit/441c1c7df30116f3a4a1b8a999e457816d77cf7a"><code>441c1c7</code></a>
add file existence check before reading extension</li>
<li><a
href="https://github.com/fitzgen/is_executable/commit/ea10f6b2f8456bdcc5300027c5605ff6089b371c"><code>ea10f6b</code></a>
Merge pull request <a
href="https://redirect.github.com/fitzgen/is_executable/issues/11">#11</a>
from davide125/exclude</li>
<li>Additional commits viewable in <a
href="https://github.com/fitzgen/is_executable/compare/v1.0.1...v1.0.3">compare
view</a></li>
</ul>
</details>
<br />

Updates `derive-new` from 0.6.0 to 0.7.0
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/nrc/derive-new/commit/6626d8f566ee523ead38fe789b171f1b46993e49"><code>6626d8f</code></a>
Update compiletest</li>
<li><a
href="https://github.com/nrc/derive-new/commit/1e024ddf396e06690c0b39baa5a4f996ae88404b"><code>1e024dd</code></a>
cargo update, etc.</li>
<li><a
href="https://github.com/nrc/derive-new/commit/3389ef278665f8e0be249b6f4bd3cbfc727160a8"><code>3389ef2</code></a>
Fix doc tests</li>
<li><a
href="https://github.com/nrc/derive-new/commit/bd4486d85de87d5a543a7604f4e8f136c8b0e973"><code>bd4486d</code></a>
implement <code>into</code> and <code>into_iter</code></li>
<li><a
href="https://github.com/nrc/derive-new/commit/a9230ace30ffc43836e0e49e42e1203c7f079732"><code>a9230ac</code></a>
fix tests</li>
<li><a
href="https://github.com/nrc/derive-new/commit/77cb8287d22ca3aff803577a49321886895a43ee"><code>77cb828</code></a>
Merge pull request <a
href="https://redirect.github.com/nrc/derive-new/issues/67">#67</a> from
Paragit-Solutions/implement-new-method-visibility</li>
<li><a
href="https://github.com/nrc/derive-new/commit/cacbadabd235a83e978fcd52d9ed83dffff43abd"><code>cacbada</code></a>
Merge pull request <a
href="https://redirect.github.com/nrc/derive-new/issues/66">#66</a> from
shellixyz/patch-1</li>
<li><a
href="https://github.com/nrc/derive-new/commit/d11f63160c0829dbf06a1aab30f431c9b58ecc37"><code>d11f631</code></a>
Add documentation</li>
<li><a
href="https://github.com/nrc/derive-new/commit/3311408f8fc4844e857708bf2a222c939ac1066d"><code>3311408</code></a>
Add visibility to test struct to test compilation and correct macro
expansion</li>
<li><a
href="https://github.com/nrc/derive-new/commit/61853b79702bae6d0ffa343718310f20463687a4"><code>61853b7</code></a>
Make the default visibility public</li>
<li>Additional commits viewable in <a
href="https://github.com/nrc/derive-new/compare/0.6.0...0.7">compare
view</a></li>
</ul>
</details>
<br />

Updates `async-trait` from 0.1.81 to 0.1.83
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/dtolnay/async-trait/releases">async-trait's
releases</a>.</em></p>
<blockquote>
<h2>0.1.83</h2>
<ul>
<li>Prevent needless_arbitrary_self_type lint being produced in
generated code (<a
href="https://redirect.github.com/dtolnay/async-trait/issues/278">#278</a>)</li>
</ul>
<h2>0.1.82</h2>
<ul>
<li>Prevent elided_named_lifetimes lint being produced in generated code
(<a
href="https://redirect.github.com/dtolnay/async-trait/issues/276">#276</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/dtolnay/async-trait/commit/e6b4d471c64156338fb87386b7a7ad8543c3a205"><code>e6b4d47</code></a>
Release 0.1.83</li>
<li><a
href="https://github.com/dtolnay/async-trait/commit/bfe8d617660237b27eee620181586a16ff2f6a25"><code>bfe8d61</code></a>
Merge pull request <a
href="https://redirect.github.com/dtolnay/async-trait/issues/278">#278</a>
from dtolnay/arbself</li>
<li><a
href="https://github.com/dtolnay/async-trait/commit/7bd974b3a4db2c3ab321de2976d09d3ea2b82348"><code>7bd974b</code></a>
Ignore needless_arbitrary_self_type clippy lint in generated code</li>
<li><a
href="https://github.com/dtolnay/async-trait/commit/b53b4e755402ef91d2104d40b8f303ad0c56d2f9"><code>b53b4e7</code></a>
Add regression test for issue 277</li>
<li><a
href="https://github.com/dtolnay/async-trait/commit/f8e5bb43181450a17068f160e8a51d410ede1705"><code>f8e5bb4</code></a>
Release 0.1.82</li>
<li><a
href="https://github.com/dtolnay/async-trait/commit/8fbf118de30d3d30416d5a2dff496513433171c4"><code>8fbf118</code></a>
Merge pull request <a
href="https://redirect.github.com/dtolnay/async-trait/issues/276">#276</a>
from dtolnay/elidednamed</li>
<li><a
href="https://github.com/dtolnay/async-trait/commit/6fa246a0546fc678c4812ccb59306b6b264c27a0"><code>6fa246a</code></a>
Ignore nightly's new elided_named_lifetimes lint in generated code</li>
<li><a
href="https://github.com/dtolnay/async-trait/commit/d542a0dd74f366995e5924edc2d6ac7661e5d9ca"><code>d542a0d</code></a>
Upload CI Cargo.lock for reproducing failures</li>
<li><a
href="https://github.com/dtolnay/async-trait/commit/8828c35a86442dd05b6ac3aab5f0bac769e246f0"><code>8828c35</code></a>
Sort dependency features in Cargo.toml</li>
<li><a
href="https://github.com/dtolnay/async-trait/commit/ba9793af3f3936e2373ab4c482bf49ac67009df8"><code>ba9793a</code></a>
Update ui test suite to nightly-2024-08-11</li>
<li>Additional commits viewable in <a
href="https://github.com/dtolnay/async-trait/compare/0.1.81...0.1.83">compare
view</a></li>
</ul>
</details>
<br />

Updates `autocfg` from 1.3.0 to 1.4.0
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/cuviper/autocfg/commit/d07df6624a4573803a29397c0ccf636aa0b3d153"><code>d07df66</code></a>
Merge pull request <a
href="https://redirect.github.com/cuviper/autocfg/issues/73">#73</a>
from cuviper/release-1.4.0</li>
<li><a
href="https://github.com/cuviper/autocfg/commit/f6066f016441c2a25e0fa0d9d0521b1a79b0e14c"><code>f6066f0</code></a>
Release 1.4.0</li>
<li><a
href="https://github.com/cuviper/autocfg/commit/8af60eca650aed24db3042dbd0a2e1f61016b95e"><code>8af60ec</code></a>
Merge pull request <a
href="https://redirect.github.com/cuviper/autocfg/issues/70">#70</a>
from Techcable/feature/rustc-check-cfg</li>
<li><a
href="https://github.com/cuviper/autocfg/commit/52a995b6723ae015fbed7312d56803492f01e10a"><code>52a995b</code></a>
Apply suggestions from code review</li>
<li><a
href="https://github.com/cuviper/autocfg/commit/a8703c163f5aa66819f515356530420955374386"><code>a8703c1</code></a>
Attempt rust 1.0 compat for ci/verify-check-cfg</li>
<li><a
href="https://github.com/cuviper/autocfg/commit/ac78be804dbcf9e616d69a93c0ba918adc6a003a"><code>ac78be8</code></a>
Add ci test crate for check-cfg</li>
<li><a
href="https://github.com/cuviper/autocfg/commit/0b4a7617ad0e6ccf271dac7ab920a731195fab32"><code>0b4a761</code></a>
Have emit_has methods delegate wherever possible</li>
<li><a
href="https://github.com/cuviper/autocfg/commit/546f7c6c1c0e25b2dca136675934348118f603d2"><code>546f7c6</code></a>
Fix minor doc issues</li>
<li><a
href="https://github.com/cuviper/autocfg/commit/e0e0f18f54fb60f9c42a01c6571edcdab4542db6"><code>e0e0f18</code></a>
Automatically emit <code>rustc-check-cfg</code> directives for
AutoCfg</li>
<li><a
href="https://github.com/cuviper/autocfg/commit/1953a17319e667dd2ead9a4eae0645ed939eef24"><code>1953a17</code></a>
Merge pull request <a
href="https://redirect.github.com/cuviper/autocfg/issues/72">#72</a>
from cuviper/pretty-way</li>
<li>Additional commits viewable in <a
href="https://github.com/cuviper/autocfg/compare/1.3.0...1.4.0">compare
view</a></li>
</ul>
</details>
<br />

Updates `backtrace` from 0.3.73 to 0.3.74
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/rust-lang/backtrace-rs/releases">backtrace's
releases</a>.</em></p>
<blockquote>
<h2>0.3.74</h2>
<h2>What's Changed</h2>
<ul>
<li>QNX Neutrino 7.0 support, thanks to <a
href="https://github.com/nyurik"><code>@​nyurik</code></a> in <a
href="https://redirect.github.com/rust-lang/backtrace-rs/pull/648">rust-lang/backtrace-rs#648</a></li>
<li>Cleaned up our Android support. This should massively improve
backtraces for ones with the API level sufficient to ship with
libunwind, etc. Unfortunately, it comes at the cost of dropping support
for older ones! Thanks to <a
href="https://github.com/fengys"><code>@​fengys</code></a> in <a
href="https://redirect.github.com/rust-lang/backtrace-rs/pull/656">rust-lang/backtrace-rs#656</a></li>
<li>Made PrintFmt, which was using the
<code>Enum::__NonExhaustiveVariant</code> pattern, use
<code>#[non_exhaustive]</code> for real. Don't @ me if you were matching
on that! Thanks to <a
href="https://github.com/nyurik"><code>@​nyurik</code></a> in <a
href="https://redirect.github.com/rust-lang/backtrace-rs/pull/651">rust-lang/backtrace-rs#651</a></li>
<li>Massively cleaned up the windows code! We moved from winapi to
windows-sys with windows-targets thanks to <a
href="https://github.com/CraftSpider"><code>@​CraftSpider</code></a> and
<a href="https://github.com/ChrisDenton"><code>@​ChrisDenton</code></a>
in
<ul>
<li>Don't cast HANDLE to usize and back by <a
href="https://github.com/CraftSpider"><code>@​CraftSpider</code></a> in
<a
href="https://redirect.github.com/rust-lang/backtrace-rs/pull/635">rust-lang/backtrace-rs#635</a></li>
<li>Switch from <code>winapi</code> to <code>windows-sys</code> by <a
href="https://github.com/CraftSpider"><code>@​CraftSpider</code></a> in
<a
href="https://redirect.github.com/rust-lang/backtrace-rs/pull/641">rust-lang/backtrace-rs#641</a></li>
<li>Update windows bindings and use windows-targets by <a
href="https://github.com/ChrisDenton"><code>@​ChrisDenton</code></a> in
<a
href="https://redirect.github.com/rust-lang/backtrace-rs/pull/653">rust-lang/backtrace-rs#653</a></li>
</ul>
</li>
<li>A bunch of updated dependencies. Thanks <a
href="https://github.com/djc"><code>@​djc</code></a> and <a
href="https://github.com/khuey"><code>@​khuey</code></a>!</li>
<li>Sorry if you were testing this code in miri! It started yelling
about sussy casts. A lot. We did a bunch of internal cleanups that
should make it quiet down, thanks to <a
href="https://github.com/workingjubilee"><code>@​workingjubilee</code></a>
in <a
href="https://redirect.github.com/rust-lang/backtrace-rs/pull/641">rust-lang/backtrace-rs#641</a></li>
<li>Uhhh we had to tweak <code>dl_iterate_phdr</code> in <a
href="https://redirect.github.com/rust-lang/backtrace-rs/pull/660">rust-lang/backtrace-rs#660</a>
after Android revealed it was... kind of unsound actually and not doing
things like checking for null pointers before making slices! WHOOPS!
Thanks to <a
href="https://github.com/saethlin"><code>@​saethlin</code></a> for
implementing detection for precisely that in rustc! It's really hard to
find soundness issues in inherited codebases like this one...</li>
</ul>
<h2>New Contributors</h2>
<ul>
<li><a
href="https://github.com/CraftSpider"><code>@​CraftSpider</code></a>
made their first contribution in <a
href="https://redirect.github.com/rust-lang/backtrace-rs/pull/635">rust-lang/backtrace-rs#635</a></li>
<li><a
href="https://github.com/fengys1996"><code>@​fengys1996</code></a> made
their first contribution in <a
href="https://redirect.github.com/rust-lang/backtrace-rs/pull/656">rust-lang/backtrace-rs#656</a></li>
<li><a href="https://github.com/djc"><code>@​djc</code></a> made their
first contribution in <a
href="https://redirect.github.com/rust-lang/backtrace-rs/pull/657">rust-lang/backtrace-rs#657</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/rust-lang/backtrace-rs/compare/0.3.73...0.3.74">https://github.com/rust-lang/backtrace-rs/compare/0.3.73...0.3.74</a></p>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/rust-lang/backtrace-rs/commit/38d49aa0395c50047ab26e418a0cb30d9955fb64"><code>38d49aa</code></a>
Merge pull request <a
href="https://redirect.github.com/rust-lang/backtrace-rs/issues/658">#658</a>
from workingjubilee/cut-0.3.74</li>
<li><a
href="https://github.com/rust-lang/backtrace-rs/commit/c1749ce9a8cc0105b9d224e66f9ce4632133c1ea"><code>c1749ce</code></a>
Cut backtrace 0.3.74</li>
<li><a
href="https://github.com/rust-lang/backtrace-rs/commit/230570f2dac80a601f5c0b30da00cc9480bd35eb"><code>230570f</code></a>
Merge pull request <a
href="https://redirect.github.com/rust-lang/backtrace-rs/issues/660">#660</a>
from workingjubilee/dont-unsoundly-iterate-phdr</li>
<li><a
href="https://github.com/rust-lang/backtrace-rs/commit/153f510013e9d486103dac7994d7f75205af397a"><code>153f510</code></a>
Do not destructure maybe-uninit fields</li>
<li><a
href="https://github.com/rust-lang/backtrace-rs/commit/38589464ed3a901794f5858ccbd7f996f6712f64"><code>3858946</code></a>
Revise dl_iterate_phdr callback to be sound-ish</li>
<li><a
href="https://github.com/rust-lang/backtrace-rs/commit/7d062c63749a4c07d9307c96b6cd9485ccd1ad18"><code>7d062c6</code></a><code>rust-lang/backtrace-rs#653</code></li>
<li><a
href="https://github.com/rust-lang/backtrace-rs/commit/fc37b22dc8a384d93f6b7b4817266eec6433875e"><code>fc37b22</code></a><code>rust-lang/backtrace-rs#657</code></li>
<li><a
href="https://github.com/rust-lang/backtrace-rs/commit/600beaa5074be0f40279584450d995c319061ce8"><code>600beaa</code></a><code>rust-lang/backtrace-rs#648</code></li>
<li><a
href="https://github.com/rust-lang/backtrace-rs/commit/84b6c1d56f4bd1b4297187db863c2db6d436c1cf"><code>84b6c1d</code></a><code>rust-lang/backtrace-rs#652</code></li>
<li><a
href="https://github.com/rust-lang/backtrace-rs/commit/95c3bacab9364620864208b651e77a524900480d"><code>95c3bac</code></a>
Make enum
<code>print::PrintFmt</code><code>rust-lang/backtrace-rs#651</code></li>
<li>Additional commits viewable in <a
href="https://github.com/rust-lang/backtrace-rs/compare/0.3.73...0.3.74">compare
view</a></li>
</ul>
</details>
<br />

Updates `bytes` from 1.7.1 to 1.7.2
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/tokio-rs/bytes/releases">bytes's
releases</a>.</em></p>
<blockquote>
<h2>Bytes 1.7.2</h2>
<h1>1.7.2 (September 17, 2024)</h1>
<h3>Fixed</h3>
<ul>
<li>Fix default impl of <code>Buf::{get_int, get_int_le}</code> (<a
href="https://redirect.github.com/tokio-rs/bytes/issues/732">#732</a>)</li>
</ul>
<h3>Documented</h3>
<ul>
<li>Fix double spaces in comments and doc comments (<a
href="https://redirect.github.com/tokio-rs/bytes/issues/731">#731</a>)</li>
</ul>
<h3>Internal changes</h3>
<ul>
<li>Ensure BytesMut::advance reduces capacity (<a
href="https://redirect.github.com/tokio-rs/bytes/issues/728">#728</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/tokio-rs/bytes/blob/master/CHANGELOG.md">bytes's
changelog</a>.</em></p>
<blockquote>
<h1>1.7.2 (September 17, 2024)</h1>
<h3>Fixed</h3>
<ul>
<li>Fix default impl of <code>Buf::{get_int, get_int_le}</code> (<a
href="https://redirect.github.com/tokio-rs/bytes/issues/732">#732</a>)</li>
</ul>
<h3>Documented</h3>
<ul>
<li>Fix double spaces in comments and doc comments (<a
href="https://redirect.github.com/tokio-rs/bytes/issues/731">#731</a>)</li>
</ul>
<h3>Internal changes</h3>
<ul>
<li>Ensure BytesMut::advance reduces capacity (<a
href="https://redirect.github.com/tokio-rs/bytes/issues/728">#728</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/tokio-rs/bytes/commit/d7c1d658d90c922eeee1dbc29bc6f6fd9a1a1a66"><code>d7c1d65</code></a>
chore: prepare bytes v1.7.2 (<a
href="https://redirect.github.com/tokio-rs/bytes/issues/736">#736</a>)</li>
<li><a
href="https://github.com/tokio-rs/bytes/commit/ac46ebdd464144cecd7463a96ca9eb347458ae94"><code>ac46ebd</code></a>
ci: update nightly to nightly-2024-09-15 (<a
href="https://redirect.github.com/tokio-rs/bytes/issues/734">#734</a>)</li>
<li><a
href="https://github.com/tokio-rs/bytes/commit/79fb85323cf4cf14d9b85f487b65fc147030cf4b"><code>79fb853</code></a>
fix: apply sign extension when decoding int (<a
href="https://redirect.github.com/tokio-rs/bytes/issues/732">#732</a>)</li>
<li><a
href="https://github.com/tokio-rs/bytes/commit/291df5acc94b82a48765e67eeb1c1a2074539e68"><code>291df5a</code></a>
Fix double spaces in comments and doc comments (<a
href="https://redirect.github.com/tokio-rs/bytes/issues/731">#731</a>)</li>
<li><a
href="https://github.com/tokio-rs/bytes/commit/ed7d5ff39e39c2802c0fa9e2fc308f6a3e0beda7"><code>ed7d5ff</code></a>
test: ensure BytesMut::advance reduces capacity (<a
href="https://redirect.github.com/tokio-rs/bytes/issues/728">#728</a>)</li>
<li>See full diff in <a
href="https://github.com/tokio-rs/bytes/compare/v1.7.1...v1.7.2">compare
view</a></li>
</ul>
</details>
<br />

Updates `cc` from 1.1.14 to 1.1.22
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/rust-lang/cc-rs/releases">cc's
releases</a>.</em></p>
<blockquote>
<h2>cc-v1.1.22</h2>
<h3>Other</h3>
<ul>
<li>Don't rerun if PATH changes (<a
href="https://redirect.github.com/rust-lang/cc-rs/pull/1215">#1215</a>)</li>
</ul>
<h2>cc-v1.1.21</h2>
<h3>Other</h3>
<ul>
<li>disable pic for targets that end in <code>-none</code> (<a
href="https://redirect.github.com/rust-lang/cc-rs/pull/1212">#1212</a>)</li>
</ul>
<h2>cc-v1.1.20</h2>
<h3>Other</h3>
<ul>
<li>Add buildcache as known Rust and C/C++ compiler wrapper (<a
href="https://redirect.github.com/rust-lang/cc-rs/pull/1209">#1209</a>)</li>
</ul>
<h2>cc-v1.1.19</h2>
<h3>Other</h3>
<ul>
<li>Add support arm64e-apple-darwin (<a
href="https://redirect.github.com/rust-lang/cc-rs/pull/1207">#1207</a>)</li>
</ul>
<h2>cc-v1.1.18</h2>
<h3>Other</h3>
<ul>
<li>Fixed unsoundness in <code>StderrForwarder::forward_available</code>
(<a
href="https://redirect.github.com/rust-lang/cc-rs/pull/1203">#1203</a>)</li>
</ul>
<h2>cc-v1.1.17</h2>
<h3>Fixed</h3>
<ul>
<li>fix finding toolchains when invoked by msbuild (<a
href="https://redirect.github.com/rust-lang/cc-rs/pull/1201">#1201</a>)</li>
</ul>
<h2>cc-v1.1.16</h2>
<h3>Other</h3>
<ul>
<li>Treat VxWorks wr-cc as a Gnu compiler (<a
href="https://redirect.github.com/rust-lang/cc-rs/pull/1198">#1198</a>)</li>
</ul>
<h2>cc-v1.1.15</h2>
<h3>Other</h3>
<ul>
<li>Add -mfloat-abi=hard as a default argument when using any
arm/thumb-none-eabihf target (<a
href="https://redirect.github.com/rust-lang/cc-rs/pull/1194">#1194</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/rust-lang/cc-rs/blob/main/CHANGELOG.md">cc's
changelog</a>.</em></p>
<blockquote>
<h2><a
href="https://github.com/rust-lang/cc-rs/compare/cc-v1.1.21...cc-v1.1.22">1.1.22</a>
- 2024-09-27</h2>
<h3>Other</h3>
<ul>
<li>Don't rerun if PATH changes (<a
href="https://redirect.github.com/rust-lang/cc-rs/pull/1215">#1215</a>)</li>
</ul>
<h2><a
href="https://github.com/rust-lang/cc-rs/compare/cc-v1.1.20...cc-v1.1.21">1.1.21</a>
- 2024-09-18</h2>
<h3>Other</h3>
<ul>
<li>disable pic for targets that end in <code>-none</code> (<a
href="https://redirect.github.com/rust-lang/cc-rs/pull/1212">#1212</a>)</li>
</ul>
<h2><a
href="https://github.com/rust-lang/cc-rs/compare/cc-v1.1.19...cc-v1.1.20">1.1.20</a>
- 2024-09-17</h2>
<h3>Other</h3>
<ul>
<li>Add buildcache as known Rust and C/C++ compiler wrapper (<a
href="https://redirect.github.com/rust-lang/cc-rs/pull/1209">#1209</a>)</li>
</ul>
<h2><a
href="https://github.com/rust-lang/cc-rs/compare/cc-v1.1.18...cc-v1.1.19">1.1.19</a>
- 2024-09-15</h2>
<h3>Other</h3>
<ul>
<li>Add support arm64e-apple-darwin (<a
href="https://redirect.github.com/rust-lang/cc-rs/pull/1207">#1207</a>)</li>
</ul>
<h2><a
href="https://github.com/rust-lang/cc-rs/compare/cc-v1.1.17...cc-v1.1.18">1.1.18</a>
- 2024-09-07</h2>
<h3>Other</h3>
<ul>
<li>Fixed unsoundness in <code>StderrForwarder::forward_available</code>
(<a
href="https://redirect.github.com/rust-lang/cc-rs/pull/1203">#1203</a>)</li>
</ul>
<h2><a
href="https://github.com/rust-lang/cc-rs/compare/cc-v1.1.16...cc-v1.1.17">1.1.17</a>
- 2024-09-06</h2>
<h3>Fixed</h3>
<ul>
<li>fix finding toolchains when invoked by msbuild (<a
href="https://redirect.github.com/rust-lang/cc-rs/pull/1201">#1201</a>)</li>
</ul>
<h2><a
href="https://github.com/rust-lang/cc-rs/compare/cc-v1.1.15...cc-v1.1.16">1.1.16</a>
- 2024-09-04</h2>
<h3>Other</h3>
<ul>
<li>Treat VxWorks wr-cc as a Gnu compiler (<a
href="https://redirect.github.com/rust-lang/cc-rs/pull/1198">#1198</a>)</li>
</ul>
<h2><a
href="https://github.com/rust-lang/cc-rs/compare/cc-v1.1.14...cc-v1.1.15">1.1.15</a>
- 2024-08-26</h2>
<h3>Other</h3>
<ul>
<li>Add -mfloat-abi=hard as a default argument when using any
arm/thumb-none-eabihf target (<a
href="https://redirect.github.com/rust-lang/cc-rs/pull/1194">#1194</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/rust-lang/cc-rs/commit/5f5e1c8c18b53aa1524f720ce21b5a7986a0bf6b"><code>5f5e1c8</code></a>
chore: release (<a
href="https://redirect.github.com/rust-lang/cc-rs/issues/1216">#1216</a>)</li>
<li><a
href="https://github.com/rust-lang/cc-rs/commit/71c672b4afa2f9b6e5046a963d3b5bc1f9ccd2f8"><code>71c672b</code></a>
Don't rerun if PATH changes (<a
href="https://redirect.github.com/rust-lang/cc-rs/issues/1215">#1215</a>)</li>
<li><a
href="https://github.com/rust-lang/cc-rs/commit/748b777e553af972fb0484ece2626beaa354e0a2"><code>748b777</code></a>
chore: release (<a
href="https://redirect.github.com/rust-lang/cc-rs/issues/1213">#1213</a>)</li>
<li><a
href="https://github.com/rust-lang/cc-rs/commit/270ec653371a12498c3a338fb8b4a5d35e8388c6"><code>270ec65</code></a>
disable pic for targets that end in <code>-none</code> (<a
href="https://redirect.github.com/rust-lang/cc-rs/issues/1212">#1212</a>)</li>
<li><a
href="https://github.com/rust-lang/cc-rs/commit/92a5e28c084aefc101d2f71f236614d9fcaa1f9e"><code>92a5e28</code></a>
chore: release (<a
href="https://redirect.github.com/rust-lang/cc-rs/issues/1210">#1210</a>)</li>
<li><a
href="https://github.com/rust-lang/cc-rs/commit/dab5d7adb4c090ac9d8650e7d97897a711ac7a14"><code>dab5d7a</code></a>
Add buildcache as known Rust and C/C++ compiler wrapper (<a
href="https://redirect.github.com/rust-lang/cc-rs/issues/1209">#1209</a>)</li>
<li><a
href="https://github.com/rust-lang/cc-rs/commit/c0b3eae28300fc8b36eb3a0b519ef4083f1a129e"><code>c0b3eae</code></a>
chore: release (<a
href="https://redirect.github.com/rust-lang/cc-rs/issues/1208">#1208</a>)</li>
<li><a
href="https://github.com/rust-lang/cc-rs/commit/278a606afb79b00cfe7a1372dbaa3529ecce3dc4"><code>278a606</code></a>
Add support arm64e-apple-darwin (<a
href="https://redirect.github.com/rust-lang/cc-rs/issues/1207">#1207</a>)</li>
<li><a
href="https://github.com/rust-lang/cc-rs/commit/668facdbbcade9ebfb48c8ea0b658fc2688c4e5c"><code>668facd</code></a>
chore: release (<a
href="https://redirect.github.com/rust-lang/cc-rs/issues/1204">#1204</a>)</li>
<li><a
href="https://github.com/rust-lang/cc-rs/commit/5e161c6f4452fe63985bdfc78462ceda94c99805"><code>5e161c6</code></a>
Fixed unsoundness in <code>StderrForwarder::forward_available</code> (<a
href="https://redirect.github.com/rust-lang/cc-rs/issues/1203">#1203</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/rust-lang/cc-rs/compare/cc-v1.1.14...cc-v1.1.22">compare
view</a></li>
</ul>
</details>
<br />

Updates `clap_builder` from 4.5.15 to 4.5.18
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/clap-rs/clap/releases">clap_builder's
releases</a>.</em></p>
<blockquote>
<h2>v4.5.18</h2>
<h2>[4.5.18] - 2024-09-20</h2>
<h3>Features</h3>
<ul>
<li><em>(builder)</em> Expose <code>Arg::get_display_order</code> and
<code>Command::get_display_order</code></li>
</ul>
<h2>v4.5.17</h2>
<h2>[4.5.17] - 2024-09-04</h2>
<h3>Fixes</h3>
<ul>
<li><em>(help)</em> Style required argument groups</li>
<li><em>(derive)</em> Improve error messages when unsupported fields are
used</li>
</ul>
<h2>v4.5.16</h2>
<h2>[4.5.16] - 2024-08-15</h2>
<h3>Fixes</h3>
<ul>
<li><em>(derive)</em> Improve error messages when <code>derive</code>
feature is missing</li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/clap-rs/clap/blob/master/CHANGELOG.md">clap_builder's
changelog</a>.</em></p>
<blockquote>
<h2>[4.5.18] - 2024-09-20</h2>
<h3>Features</h3>
<ul>
<li><em>(builder)</em> Expose <code>Arg::get_display_order</code> and
<code>Command::get_display_order</code></li>
</ul>
<h2>[4.5.17] - 2024-09-04</h2>
<h3>Fixes</h3>
<ul>
<li><em>(help)</em> Style required argument groups</li>
<li><em>(derive)</em> Improve error messages when unsupported fields are
used</li>
</ul>
<h2>[4.5.16] - 2024-08-15</h2>
<h3>Fixes</h3>
<ul>
<li><em>(derive)</em> Improve error messages when <code>derive</code>
feature is missing</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/clap-rs/clap/commit/0d142f6c04a702b791d2dfec8327661ba1b6d16c"><code>0d142f6</code></a>
chore: Release</li>
<li><a
href="https://github.com/clap-rs/clap/commit/0facf1f370e7966a4d97bce56d1d10ca4c80d0ae"><code>0facf1f</code></a>
docs: Update changelog</li>
<li><a
href="https://github.com/clap-rs/clap/commit/ee6af99c6c5e239c0f2c92f9d1baf8aa3bb4af90"><code>ee6af99</code></a>
Merge pull request <a
href="https://redirect.github.com/clap-rs/clap/issues/5743">#5743</a>
from epage/sort</li>
<li><a
href="https://github.com/clap-rs/clap/commit/232ee106615e997f0841bb3de97eed126b929fe3"><code>232ee10</code></a>
fix(complete): Use existing display order for Arg/Command</li>
<li><a
href="https://github.com/clap-rs/clap/commit/c6b5d627a0c17527630e4086a4fe83589365d1f0"><code>c6b5d62</code></a>
feat(builder): Expose get_display_order</li>
<li><a
href="https://github.com/clap-rs/clap/commit/67d9fef9cee8f1b297aed73e6d95f78744b43a27"><code>67d9fef</code></a>
feat(complete): Give control over display order</li>
<li><a
href="https://github.com/clap-rs/clap/commit/59a61e188fbb9999db52f567e3951d3720204084"><code>59a61e1</code></a>
refactor(complete): Pull out common candidate code</li>
<li><a
href="https://github.com/clap-rs/clap/commit/144879194081212046d5566572bfa15ea9bcca35"><code>1448791</code></a>
fix(complete): Specify tags for built-in candiates</li>
<li><a
href="https://github.com/clap-rs/clap/commit/a4aa5dffdf46a2975f2b2d51ce7e618e19250ead"><code>a4aa5df</code></a>
feat(complete): Group by tag</li>
<li><a
href="https://github.com/clap-rs/clap/commit/a126149a809f01586ccb6d9299eb2fc2c87d8fe0"><code>a126149</code></a>
refactor(complete): Remove redundant dedup</li>
<li>Additional commits viewable in <a
href="https://github.com/clap-rs/clap/compare/v4.5.15...v4.5.18">compare
view</a></li>
</ul>
</details>
<br />

Updates `clap_derive` from 4.5.13 to 4.5.18
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/clap-rs/clap/releases">clap_derive's
releases</a>.</em></p>
<blockquote>
<h2>v4.5.18</h2>
<h2>[4.5.18] - 2024-09-20</h2>
<h3>Features</h3>
<ul>
<li><em>(builder)</em> Expose <code>Arg::get_display_order</code> and
<code>Command::get_display_order</code></li>
</ul>
<h2>v4.5.17</h2>
<h2>[4.5.17] - 2024-09-04</h2>
<h3>Fixes</h3>
<ul>
<li><em>(help)</em> Style required argument groups</li>
<li><em>(derive)</em> Improve error messages when unsupported fields are
used</li>
</ul>
<h2>v4.5.16</h2>
<h2>[4.5.16] - 2024-08-15</h2>
<h3>Fixes</h3>
<ul>
<li><em>(derive)</em> Improve error messages when <code>derive</code>
feature is missing</li>
</ul>
<h2>v4.5.15</h2>
<h2>[4.5.15] - 2024-08-10</h2>
<h3>Compatiblity</h3>
<ul>
<li><em>(unstable-ext)</em> <code>Arg::remove</code> changed return
types</li>
</ul>
<h3>Fixes</h3>
<ul>
<li><em>(unstable-ext)</em> Make <code>Arg::remove</code> return the
removed item</li>
</ul>
<h2>v4.5.14</h2>
<h2>[4.5.14] - 2024-08-08</h2>
<h3>Features</h3>
<ul>
<li><em>(unstable-ext)</em> Added <code>Arg::add</code> for attaching
arbitrary state, like completion hints, to <code>Arg</code> without
<code>Arg</code> knowing about it</li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/clap-rs/clap/blob/master/CHANGELOG.md">clap_derive's
changelog</a>.</em></p>
<blockquote>
<h2>[4.5.18] - 2024-09-20</h2>
<h3>Features</h3>
<ul>
<li><em>(builder)</em> Expose <code>Arg::get_display_order</code> and
<code>Command::get_display_order</code></li>
</ul>
<h2>[4.5.17] - 2024-09-04</h2>
<h3>Fixes</h3>
<ul>
<li><em>(help)</em> Style required argument groups</li>
<li><em>(derive)</em> Improve error messages when unsupported fields are
used</li>
</ul>
<h2>[4.5.16] - 2024-08-15</h2>
<h3>Fixes</h3>
<ul>
<li><em>(derive)</em> Improve error messages when <code>derive</code>
feature is missing</li>
</ul>
<h2>[4.5.15] - 2024-08-10</h2>
<h3>Compatiblity</h3>
<ul>
<li><em>(unstable-ext)</em> <code>Arg::remove</code> changed return
types</li>
</ul>
<h3>Fixes</h3>
<ul>
<li><em>(unstable-ext)</em> Make <code>Arg::remove</code> return the
removed item</li>
</ul>
<h2>[4.5.14] - 2024-08-08</h2>
<h3>Features</h3>
<ul>
<li><em>(unstable-ext)</em> Added <code>Arg::add</code> for attaching
arbitrary state, like completion hints, to <code>Arg</code> without
<code>Arg</code> knowing about it</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/clap-rs/clap/commit/0d142f6c04a702b791d2dfec8327661ba1b6d16c"><code>0d142f6</code></a>
chore: Release</li>
<li><a
href="https://github.com/clap-rs/clap/commit/0facf1f370e7966a4d97bce56d1d10ca4c80d0ae"><code>0facf1f</code></a>
docs: Update changelog</li>
<li><a
href="https://github.com/clap-rs/clap/commit/ee6af99c6c5e239c0f2c92f9d1baf8aa3bb4af90"><code>ee6af99</code></a>
Merge pull request <a
href="https://redirect.github.com/clap-rs/clap/issues/5743">#5743</a>
from epage/sort</li>
<li><a
href="https://github.com/clap-rs/clap/commit/232ee106615e997f0841bb3de97eed126b929fe3"><code>232ee10</code></a>
fix(complete): Use existing display order for Arg/Command</li>
<li><a
href="https://github.com/clap-rs/clap/commit/c6b5d627a0c17527630e4086a4fe83589365d1f0"><code>c6b5d62</code></a>
feat(builder): Expose get_display_order</li>
<li><a
href="https://github.com/clap-rs/clap/commit/67d9fef9cee8f1b297aed73e6d95f78744b43a27"><code>67d9fef</code></a>
feat(complete): Give control over display order</li>
<li><a
href="https://github.com/clap-rs/clap/commit/59a61e188fbb9999db52f567e3951d3720204084"><code>59a61e1</code></a>
refactor(complete): Pull out common candidate code</li>
<li><a
href="https://github.com/clap-rs/clap/commit/144879194081212046d5566572bfa15ea9bcca35"><code>1448791</code></a>
fix(complete): Specify tags for built-in candiates</li>
<li><a
href="https://github.com/clap-rs/clap/commit/a4aa5dffdf46a2975f2b2d51ce7e618e19250ead"><code>a4aa5df</code></a>
feat(complete): Group by tag</li>
<li><a
href="https://github.com/clap-rs/clap/commit/a126149a809f01586ccb6d9299eb2fc2c87d8fe0"><code>a126149</code></a>
refactor(complete): Remove redundant dedup</li>
<li>Additional commits viewable in <a
href="https://github.com/clap-rs/clap/compare/v4.5.13...v4.5.18">compare
view</a></li>
</ul>
</details>
<br />

Updates `const_format_proc_macros` from 0.2.32 to 0.2.33
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/rodrimati1992/const_format_crates/blob/master/Changelog.md">const_format_proc_macros's
changelog</a>.</em></p>
<blockquote>
<h3>0.2.33</h3>
<p>Fixed Rust Analyzer style warning for assertion macros.</p>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li>See full diff in <a
href="https://github.com/rodrimati1992/const_format_crates/commits">compare
view</a></li>
</ul>
</details>
<br />

Updates `cpufeatures` from 0.2.13 to 0.2.14
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/RustCrypto/utils/commit/6a87dce97c9f927bea999ab957ccb6bc60a6c36f"><code>6a87dce</code></a>
cpufeatures v0.2.14 (<a
href="https://redirect.github.com/RustCrypto/utils/issues/1104">#1104</a>)</li>
<li><a
href="https://github.com/RustCrypto/utils/commit/4be67893ccece4823b606c5e29eccd44f7e07450"><code>4be6789</code></a>
aarch64-dit: initial crate (<a
href="https://redirect.github.com/RustCrypto/utils/issues/1102">#1102</a>)</li>
<li><a
href="https://github.com/RustCrypto/utils/commit/141756093ae5ee316af9cd3b459d4c5225bc86dd"><code>1417560</code></a>
README.md(s): use img.shields.io crate version badges</li>
<li><a
href="https://github.com/RustCrypto/utils/commit/cfa21ea50a22df26a52e17649e203e0c2657154d"><code>cfa21ea</code></a>
cpufeatures: add DIT support for AArch64 Linux targets (<a
href="https://redirect.github.com/RustCrypto/utils/issues/1101">#1101</a>)</li>
<li><a
href="https://github.com/RustCrypto/utils/commit/1ad40787ec88039f829144ef59b7bc506eaf07ed"><code>1ad4078</code></a>
cpufeatures: add support for DIT detection on Apple silicon (<a
href="https://redirect.github.com/RustCrypto/utils/issues/1100">#1100</a>)</li>
<li><a
href="https://github.com/RustCrypto/utils/commit/5d46aba5ef3720e854f48d93243c247e4611b125"><code>5d46aba</code></a>
block-buffer: release v0.11.0-rc.1 (<a
href="https://redirect.github.com/RustCrypto/utils/issues/1098">#1098</a>)</li>
<li>See full diff in <a
href="https://github.com/RustCrypto/utils/compare/cpufeatures-v0.2.13...cpufeatures-v0.2.14">compare
view</a></li>
</ul>
</details>
<br />

Updates `fastrand` from 2.1.0 to 2.1.1
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/smol-rs/fastrand/releases">fastrand's
releases</a>.</em></p>
<blockquote>
<h2>v2.1.1</h2>
<ul>
<li>Remove support for 128-bit targets, as they are not supported by
rustc yet. (<a
href="https://redirect.github.com/smol-rs/fastrand/issues/87">#87</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/smol-rs/fastrand/blob/master/CHANGELOG.md">fastrand's
changelog</a>.</em></p>
<blockquote>
<h1>Version 2.1.1</h1>
<ul>
<li>Remove support for 128-bit targets, as they are not supported by
rustc yet. (<a
href="https://redirect.github.com/smol-rs/fastrand/issues/87">#87</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/smol-rs/fastrand/commit/9d1a66fe46cee30e6c716812a9df467c653fa290"><code>9d1a66f</code></a>
v2.1.1</li>
<li><a
href="https://github.com/smol-rs/fastrand/commit/d05504dee3e2ec359fca62db9353de2ad3dfff40"><code>d05504d</code></a>
bugfix: Remove 128-bit value generator</li>
<li><a
href="https://github.com/smol-rs/fastrand/commit/7e60c7f688f9be3dcd4f59f216c87dac88ca2902"><code>7e60c7f</code></a>
chore: Forgot to bump the version</li>
<li>See full diff in <a
href="https://github.com/smol-rs/fastrand/compare/v2.1.0...v2.1.1">compare
view</a></li>
</ul>
</details>
<br />

Updates `flate2` from 1.0.32 to 1.0.34
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/rust-lang/flate2-rs/releases">flate2's
releases</a>.</em></p>
<blockquote>
<h2>1.0.34</h2>
<h2>What's Changed</h2>
<ul>
<li>Add minimum build test back in to CI by <a
href="https://github.com/jongiddy"><code>@​jongiddy</code></a> in <a
href="https://redirect.github.com/rust-lang/flate2-rs/pull/426">rust-lang/flate2-rs#426</a></li>
<li>docs: fix compression level range from 0-9 to 0-10 by <a
href="https://github.com/ByteBaker"><code>@​ByteBaker</code></a> in <a
href="https://redirect.github.com/rust-lang/flate2-rs/pull/427">rust-lang/flate2-rs#427</a></li>
<li>Document backend differences in compression levels by <a
href="https://github.com/Shnatsel"><code>@​Shnatsel</code></a> in <a
href="https://redirect.github.com/rust-lang/flate2-rs/pull/430">rust-lang/flate2-rs#430</a></li>
<li>Upgrade zlib-rs to 0.3.0 to get multiple bugfixes by <a
href="https://github.com/Shnatsel"><code>@​Shnatsel</code></a> in <a
href="https://redirect.github.com/rust-lang/flate2-rs/pull/428">rust-lang/flate2-rs#428</a></li>
<li>Better wording in compression level docs by <a
href="https://github.com/Shnatsel"><code>@​Shnatsel</code></a> in <a
href="https://redirect.github.com/rust-lang/flate2-rs/pull/431">rust-lang/flate2-rs#431</a></li>
</ul>
<h2>New Contributors</h2>
<ul>
<li><a href="https://github.com/ByteBaker"><code>@​ByteBaker</code></a>
made their first contribution in <a
href="https://redirect.github.com/rust-lang/flate2-rs/pull/427">rust-lang/flate2-rs#427</a></li>
<li><a href="https://github.com/Shnatsel"><code>@​Shnatsel</code></a>
made their first contribution in <a
href="https://redirect.github.com/rust-lang/flate2-rs/pull/430">rust-lang/flate2-rs#430</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/rust-lang/flate2-rs/compare/1.0.33...1.0.34">https://github.com/rust-lang/flate2-rs/compare/1.0.33...1.0.34</a></p>
<h2>1.0.33 - fix minimal manifest versions</h2>
<h2>What's Changed</h2>
<ul>
<li>Fix msrv: Run msrv checks with minimal versions by <a
href="https://github.com/NobodyXu"><code>@​NobodyXu</code></a> in <a
href="https://redirect.github.com/rust-lang/flate2-rs/pull/425">rust-lang/flate2-rs#425</a></li>
</ul>
<h2>New Contributors</h2>
<ul>
<li><a href="https://github.com/NobodyXu"><code>@​NobodyXu</code></a>
made their first contribution in <a
href="https://redirect.github.com/rust-lang/flate2-rs/pull/425">rust-lang/flate2-rs#425</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/rust-lang/flate2-rs/compare/1.0.32...1.0.33">https://github.com/rust-lang/flate2-rs/compare/1.0.32...1.0.33</a></p>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/rust-lang/flate2-rs/commit/1a28821dc116dac14178858be056e4a58ef8f501"><code>1a28821</code></a>
Merge pull request <a
href="https://redirect.github.com/rust-lang/flate2-rs/issues/431">#431</a>
from Shnatsel/better-wording</li>
<li><a
href="https://github.com/rust-lang/flate2-rs/commit/2c29780e5093b10c21954384cd97243770376814"><code>2c29780</code></a>
Merge pull request <a
href="https://redirect.github.com/rust-lang/flate2-rs/issues/428">#428</a>
from Shnatsel/upgrade-zlib-rs</li>
<li><a
href="https://github.com/rust-lang/flate2-rs/commit/423981aede8670a51d2c3aa657ae528152c0f64e"><code>423981a</code></a>
Better wording in compression level docs</li>
<li><a
href="https://github.com/rust-lang/flate2-rs/commit/da5c8cfd917b0ec2aeacc2e514b27b6bd50726e4"><code>da5c8cf</code></a>
Bump version</li>
<li><a
href="https://github.com/rust-lang/flate2-rs/commit/eeee4c641187628ec8676ffb24300c5da6bfb066"><code>eeee4c6</code></a>
Merge pull request <a
href="https://redirect.github.com/rust-lang/flate2-rs/issues/430">#430</a>
from Shnatsel/detailed-level-docs</li>
<li><a
href="https://github.com/rust-lang/flate2-rs/commit/731df32113188f3372367402b9ea2b…
backslashxx pushed a commit to backslashxx/KernelSU that referenced this pull request Jan 29, 2025
…tiann#2098)

Bumps the crates group with 25 updates in the /userspace/ksud directory:

| Package | From | To |
| --- | --- | --- |
| [anyhow](https://github.com/dtolnay/anyhow) | `1.0.86` | `1.0.89` |
| [clap](https://github.com/clap-rs/clap) | `4.5.16` | `4.5.18` |
| [const_format](https://github.com/rodrimati1992/const_format_crates) |
`0.2.32` | `0.2.33` |
| [serde](https://github.com/serde-rs/serde) | `1.0.208` | `1.0.210` |
| [serde_json](https://github.com/serde-rs/json) | `1.0.125` | `1.0.128`
|
| [libc](https://github.com/rust-lang/libc) | `0.2.158` | `0.2.159` |
| [is_executable](https://github.com/fitzgen/is_executable) | `1.0.1` |
`1.0.3` |
| [derive-new](https://github.com/nrc/derive-new) | `0.6.0` | `0.7.0` |
| [async-trait](https://github.com/dtolnay/async-trait) | `0.1.81` |
`0.1.83` |
| [autocfg](https://github.com/cuviper/autocfg) | `1.3.0` | `1.4.0` |
| [backtrace](https://github.com/rust-lang/backtrace-rs) | `0.3.73` |
`0.3.74` |
| [bytes](https://github.com/tokio-rs/bytes) | `1.7.1` | `1.7.2` |
| [cc](https://github.com/rust-lang/cc-rs) | `1.1.14` | `1.1.22` |
| [cpufeatures](https://github.com/RustCrypto/utils) | `0.2.13` |
`0.2.14` |
| [fastrand](https://github.com/smol-rs/fastrand) | `2.1.0` | `2.1.1` |
| [flate2](https://github.com/rust-lang/flate2-rs) | `1.0.32` | `1.0.34`
|
| [iana-time-zone](https://github.com/strawlab/iana-time-zone) |
`0.1.60` | `0.1.61` |
| [indexmap](https://github.com/indexmap-rs/indexmap) | `2.4.0` |
`2.5.0` |
| [object](https://github.com/gimli-rs/object) | `0.36.3` | `0.36.4` |
| [syn](https://github.com/dtolnay/syn) | `2.0.75` | `2.0.77` |
| [thiserror](https://github.com/dtolnay/thiserror) | `1.0.63` |
`1.0.64` |
| [tokio](https://github.com/tokio-rs/tokio) | `1.39.3` | `1.40.0` |
| [unicode-ident](https://github.com/dtolnay/unicode-ident) | `1.0.12` |
`1.0.13` |
| [unicode-width](https://github.com/unicode-rs/unicode-width) |
`0.1.13` | `0.1.14` |
| [unicode-xid](https://github.com/unicode-rs/unicode-xid) | `0.2.5` |
`0.2.6` |


Updates `anyhow` from 1.0.86 to 1.0.89
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/dtolnay/anyhow/releases">anyhow's
releases</a>.</em></p>
<blockquote>
<h2>1.0.89</h2>
<ul>
<li>Make anyhow::Error's <code>UnwindSafe</code> and
<code>RefUnwindSafe</code> impl consistently available between versions
of Rust newer and older than 1.72 (<a
href="https://redirect.github.com/dtolnay/anyhow/issues/386">#386</a>)</li>
</ul>
<h2>1.0.88</h2>
<ul>
<li>Documentation improvements</li>
</ul>
<h2>1.0.87</h2>
<ul>
<li>Support more APIs, including <code>Error::new</code> and
<code>Error::chain</code>, in no-std mode on Rust 1.81+ (<a
href="https://redirect.github.com/dtolnay/anyhow/issues/383">#383</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/dtolnay/anyhow/commit/9d3fb6d0968bd9f95a0d8bbc5269eb2496880510"><code>9d3fb6d</code></a>
Release 1.0.89</li>
<li><a
href="https://github.com/dtolnay/anyhow/commit/830c399126c1db902681130f5c4273d93767b990"><code>830c399</code></a>
Merge pull request <a
href="https://redirect.github.com/dtolnay/anyhow/issues/386">#386</a>
from dtolnay/unwindsafe</li>
<li><a
href="https://github.com/dtolnay/anyhow/commit/8454be372f2a7832436d7021b8f2f0a96db558b3"><code>8454be3</code></a>
Ensure UnwindSafe even with &quot;backtrace&quot; feature enabled and
old Rust</li>
<li><a
href="https://github.com/dtolnay/anyhow/commit/a85e414bf555ed961f59c2c69410e7b5f706df65"><code>a85e414</code></a>
Add more autotraits tests</li>
<li><a
href="https://github.com/dtolnay/anyhow/commit/139f266b903ac2eab462292495f864740446dcdc"><code>139f266</code></a>
Release 1.0.88</li>
<li><a
href="https://github.com/dtolnay/anyhow/commit/aa3ab2b9f0a8cdf4b54dae58d39a2446c5eecbb2"><code>aa3ab2b</code></a>
Merge pull request <a
href="https://redirect.github.com/dtolnay/anyhow/issues/385">#385</a>
from dtolnay/docnostd</li>
<li><a
href="https://github.com/dtolnay/anyhow/commit/44c37674d35a0899fde03ae2fdaeee0bd4c38501"><code>44c3767</code></a>
Update documentation on no-std error type conversions</li>
<li><a
href="https://github.com/dtolnay/anyhow/commit/afe93e7b167d069ac79f2c7f363b919d3793e6ce"><code>afe93e7</code></a>
Release 1.0.87</li>
<li><a
href="https://github.com/dtolnay/anyhow/commit/d58fa4b282c1149bd121419dd359eb8caf2c113d"><code>d58fa4b</code></a>
Fix outdated html_root_url</li>
<li><a
href="https://github.com/dtolnay/anyhow/commit/c18d80743cead05bd75cf2e310e7a00c515facb9"><code>c18d807</code></a>
Disable unused doc_cfg feature</li>
<li>Additional commits viewable in <a
href="https://github.com/dtolnay/anyhow/compare/1.0.86...1.0.89">compare
view</a></li>
</ul>
</details>
<br />

Updates `clap` from 4.5.16 to 4.5.18
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/clap-rs/clap/releases">clap's
releases</a>.</em></p>
<blockquote>
<h2>v4.5.18</h2>
<h2>[4.5.18] - 2024-09-20</h2>
<h3>Features</h3>
<ul>
<li><em>(builder)</em> Expose <code>Arg::get_display_order</code> and
<code>Command::get_display_order</code></li>
</ul>
<h2>v4.5.17</h2>
<h2>[4.5.17] - 2024-09-04</h2>
<h3>Fixes</h3>
<ul>
<li><em>(help)</em> Style required argument groups</li>
<li><em>(derive)</em> Improve error messages when unsupported fields are
used</li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/clap-rs/clap/blob/master/CHANGELOG.md">clap's
changelog</a>.</em></p>
<blockquote>
<h2>[4.5.18] - 2024-09-20</h2>
<h3>Features</h3>
<ul>
<li><em>(builder)</em> Expose <code>Arg::get_display_order</code> and
<code>Command::get_display_order</code></li>
</ul>
<h2>[4.5.17] - 2024-09-04</h2>
<h3>Fixes</h3>
<ul>
<li><em>(help)</em> Style required argument groups</li>
<li><em>(derive)</em> Improve error messages when unsupported fields are
used</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/clap-rs/clap/commit/d81158599f5b3a2434845a1731377eae84780b9a"><code>d811585</code></a>
chore: Release</li>
<li><a
href="https://github.com/clap-rs/clap/commit/ab948b35561b5bc64b50d6a52d799aa5ac5de187"><code>ab948b3</code></a>
docs: Update changelog</li>
<li><a
href="https://github.com/clap-rs/clap/commit/82e599e91d64ddae7231c98a91b4cd39e8c9036d"><code>82e599e</code></a>
Merge pull request <a
href="https://redirect.github.com/clap-rs/clap/issues/5602">#5602</a>
from shannmu/delimiter_values</li>
<li><a
href="https://github.com/clap-rs/clap/commit/59bf26dd56032a7a4e6d923cd37de6e72c33078e"><code>59bf26d</code></a>
feat(clap_complete): Support delimiter values in native completions</li>
<li><a
href="https://github.com/clap-rs/clap/commit/ccecab394b45bc4dd251d00b7d69737ed93d18f8"><code>ccecab3</code></a>
test(clap_complete): Add test cases for delimiter_values support</li>
<li><a
href="https://github.com/clap-rs/clap/commit/a3a476407b01f083dc06200783ad745bc45e5da8"><code>a3a4764</code></a>
docs(derive): Specify Parser::update_from semantics</li>
<li><a
href="https://github.com/clap-rs/clap/commit/df165a2da431138bcc5cd891aec922cbdeda6ded"><code>df165a2</code></a>
docs(derive): Flatten isn't just for update</li>
<li><a
href="https://github.com/clap-rs/clap/commit/5488bcfa30255c59f931f1248e854c0087b2b969"><code>5488bcf</code></a>
docs(derive): Connect more dots for Args/Subcommand</li>
<li><a
href="https://github.com/clap-rs/clap/commit/6013ad4f676dd25c5b5150557a5fb5698c3de020"><code>6013ad4</code></a>
chore: Release</li>
<li><a
href="https://github.com/clap-rs/clap/commit/f98e3ee215015055d776f91217019c33da78c975"><code>f98e3ee</code></a>
docs: Update changelog</li>
<li>Additional commits viewable in <a
href="https://github.com/clap-rs/clap/compare/clap_complete-v4.5.16...clap_complete-v4.5.18">compare
view</a></li>
</ul>
</details>
<br />

Updates `const_format` from 0.2.32 to 0.2.33
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/rodrimati1992/const_format_crates/blob/master/Changelog.md">const_format's
changelog</a>.</em></p>
<blockquote>
<h3>0.2.33</h3>
<p>Fixed Rust Analyzer style warning for assertion macros.</p>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li>See full diff in <a
href="https://github.com/rodrimati1992/const_format_crates/commits">compare
view</a></li>
</ul>
</details>
<br />

Updates `serde` from 1.0.208 to 1.0.210
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/serde-rs/serde/releases">serde's
releases</a>.</em></p>
<blockquote>
<h2>v1.0.210</h2>
<ul>
<li>Support serializing and deserializing <code>IpAddr</code> and
<code>SocketAddr</code> in no-std mode on Rust 1.77+ (<a
href="https://redirect.github.com/serde-rs/serde/issues/2816">#2816</a>,
thanks <a
href="https://github.com/MathiasKoch"><code>@​MathiasKoch</code></a>)</li>
<li>Make <code>serde::ser::StdError</code> and
<code>serde::de::StdError</code> equivalent to
<code>core::error::Error</code> on Rust 1.81+ (<a
href="https://redirect.github.com/serde-rs/serde/issues/2818">#2818</a>)</li>
</ul>
<h2>v1.0.209</h2>
<ul>
<li>Fix deserialization of empty structs and empty tuples inside of
untagged enums (<a
href="https://redirect.github.com/serde-rs/serde/issues/2805">#2805</a>,
thanks <a
href="https://github.com/Mingun"><code>@​Mingun</code></a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/serde-rs/serde/commit/89c4b02bf32ceae5b17d89f93a452ccc195ca038"><code>89c4b02</code></a>
Release 1.0.210</li>
<li><a
href="https://github.com/serde-rs/serde/commit/eeb8e44cda15f929796cd72241b0311e0bd04e67"><code>eeb8e44</code></a>
Merge pull request <a
href="https://redirect.github.com/serde-rs/serde/issues/2818">#2818</a>
from dtolnay/coreerror</li>
<li><a
href="https://github.com/serde-rs/serde/commit/785c2d9605ee73cc172dfd421228c1dccca984c9"><code>785c2d9</code></a>
Stabilize no-std StdError trait</li>
<li><a
href="https://github.com/serde-rs/serde/commit/d549f048e10bcb5e677afaf7b99d0ed3604b113b"><code>d549f04</code></a>
Reformat parse_ip_impl definition and calls</li>
<li><a
href="https://github.com/serde-rs/serde/commit/4c0dd63011434905265e2710bb9186e09e4f8ec2"><code>4c0dd63</code></a>
Delete attr support from core::net deserialization macros</li>
<li><a
href="https://github.com/serde-rs/serde/commit/26fb1341651c4e0ae4d58c675db3ca2a0d6e12c2"><code>26fb134</code></a>
Relocate cfg attrs out of parse_ip_impl and parse_socket_impl</li>
<li><a
href="https://github.com/serde-rs/serde/commit/07e614b52b5ab3387d86d3198e5f52cd1f5ff3cb"><code>07e614b</code></a>
Merge pull request <a
href="https://redirect.github.com/serde-rs/serde/issues/2817">#2817</a>
from dtolnay/corenet</li>
<li><a
href="https://github.com/serde-rs/serde/commit/b1f899fbe81f070803d9f7ca6e5d1cc3f19c9ea2"><code>b1f899f</code></a>
Delete doc(cfg) attribute from impls that are supported in no-std</li>
<li><a
href="https://github.com/serde-rs/serde/commit/b4f860e62767828beb3ef91721b6c56a31f9baad"><code>b4f860e</code></a>
Merge pull request <a
href="https://redirect.github.com/serde-rs/serde/issues/2816">#2816</a>
from MathiasKoch/chore/core-net</li>
<li><a
href="https://github.com/serde-rs/serde/commit/d940fe1b4934f097b0333dcb87bec5ee308d39cd"><code>d940fe1</code></a>
Reuse existing Buf wrapper as replacement for std::io::Write</li>
<li>Additional commits viewable in <a
href="https://github.com/serde-rs/serde/compare/v1.0.208...v1.0.210">compare
view</a></li>
</ul>
</details>
<br />

Updates `serde_json` from 1.0.125 to 1.0.128
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/serde-rs/json/releases">serde_json's
releases</a>.</em></p>
<blockquote>
<h2>1.0.128</h2>
<ul>
<li>Support serializing maps containing 128-bit integer keys to
serde_json::Value (<a
href="https://redirect.github.com/serde-rs/json/issues/1188">#1188</a>,
thanks <a
href="https://github.com/Mrreadiness"><code>@​Mrreadiness</code></a>)</li>
</ul>
<h2>1.0.127</h2>
<ul>
<li>Add more removal methods to OccupiedEntry (<a
href="https://redirect.github.com/serde-rs/json/issues/1179">#1179</a>,
thanks <a
href="https://github.com/GREsau"><code>@​GREsau</code></a>)</li>
</ul>
<h2>1.0.126</h2>
<ul>
<li>Improve string parsing on targets that use 32-bit pointers but also
have fast 64-bit integer arithmetic, such as
aarch64-unknown-linux-gnu_ilp32 and x86_64-unknown-linux-gnux32 (<a
href="https://redirect.github.com/serde-rs/json/issues/1182">#1182</a>,
thanks <a href="https://github.com/CryZe"><code>@​CryZe</code></a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/serde-rs/json/commit/d96b1d9b643b49a0bb92a8cf280daf6aa08f37cc"><code>d96b1d9</code></a>
Release 1.0.128</li>
<li><a
href="https://github.com/serde-rs/json/commit/599228d5dc52a0f1595fe4bd901821f70d0317a5"><code>599228d</code></a>
Merge pull request <a
href="https://redirect.github.com/serde-rs/json/issues/1188">#1188</a>
from Mrreadiness/feat/add-hashmap-key-128-serializer</li>
<li><a
href="https://github.com/serde-rs/json/commit/5416cee6c5ad355907f6e9d5f6039b994c69f768"><code>5416cee</code></a>
feat: add support for 128 bit HashMap key serialization</li>
<li><a
href="https://github.com/serde-rs/json/commit/27a4ca9d7a62394fe8f0103f3d91de59f055a4c4"><code>27a4ca9</code></a>
Upload CI Cargo.lock for reproducing failures</li>
<li><a
href="https://github.com/serde-rs/json/commit/5ebf65cc480f90714c94f82099ca9161d80cbb10"><code>5ebf65c</code></a>
Release 1.0.127</li>
<li><a
href="https://github.com/serde-rs/json/commit/f287a3b1a93ecb1a11cee31cb638bd9523a58add"><code>f287a3b</code></a>
Merge pull request 1179 from GREsau/patch-1</li>
<li><a
href="https://github.com/serde-rs/json/commit/ec980b02774abbff12fd3e26b0a1582eb14dcef7"><code>ec980b0</code></a>
Release 1.0.126</li>
<li><a
href="https://github.com/serde-rs/json/commit/e6282b0c479947805a33c7f167b1d19dd4c7ad4f"><code>e6282b0</code></a>
Merge pull request <a
href="https://redirect.github.com/serde-rs/json/issues/1184">#1184</a>
from serde-rs/fastarithmetic</li>
<li><a
href="https://github.com/serde-rs/json/commit/ffc4a43453029cdc5603cfe3ef08414488fd45de"><code>ffc4a43</code></a>
Improve cfg names for fast arithmetic</li>
<li><a
href="https://github.com/serde-rs/json/commit/4b1048d0ecc4d326d6657531689513f182a4f850"><code>4b1048d</code></a>
Merge pull request <a
href="https://redirect.github.com/serde-rs/json/issues/1183">#1183</a>
from serde-rs/arithmetic</li>
<li>Additional commits viewable in <a
href="https://github.com/serde-rs/json/compare/1.0.125...1.0.128">compare
view</a></li>
</ul>
</details>
<br />

Updates `libc` from 0.2.158 to 0.2.159
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/rust-lang/libc/releases">libc's
releases</a>.</em></p>
<blockquote>
<h2>0.2.159</h2>
<h3>Added</h3>
<ul>
<li>Android: add more <code>AT_*</code> constants in <a
href="https://redirect.github.com/rust-lang/libc/pull/3779">rust-lang/libc#3779</a></li>
<li>Apple: add missing <code>NOTE_*</code> constants in <a
href="https://redirect.github.com/rust-lang/libc/pull/3883">rust-lang/libc#3883</a></li>
<li>Hermit: add missing error numbers in <a
href="https://redirect.github.com/rust-lang/libc/pull/3858">rust-lang/libc#3858</a></li>
<li>Hurd: add <code>__timeval</code> for 64-bit support in <a
href="https://redirect.github.com/rust-lang/libc/pull/3786">rust-lang/libc#3786</a></li>
<li>Linux: add <code>epoll_pwait2</code> in <a
href="https://redirect.github.com/rust-lang/libc/pull/3868">rust-lang/libc#3868</a></li>
<li>Linux: add <code>mq_notify</code> in <a
href="https://redirect.github.com/rust-lang/libc/pull/3849">rust-lang/libc#3849</a></li>
<li>Linux: add missing <code>NFT_CT_*</code> constants in <a
href="https://redirect.github.com/rust-lang/libc/pull/3844">rust-lang/libc#3844</a></li>
<li>Linux: add the <code>fchmodat2</code> syscall in <a
href="https://redirect.github.com/rust-lang/libc/pull/3588">rust-lang/libc#3588</a></li>
<li>Linux: add the <code>mseal</code> syscall in <a
href="https://redirect.github.com/rust-lang/libc/pull/3798">rust-lang/libc#3798</a></li>
<li>OpenBSD: add <code>sendmmsg</code> and <code>recvmmsg</code> in <a
href="https://redirect.github.com/rust-lang/libc/pull/3831">rust-lang/libc#3831</a></li>
<li>Unix: add <code>IN6ADDR_ANY_INIT</code> and
<code>IN6ADDR_LOOPBACK_INIT</code> in <a
href="https://redirect.github.com/rust-lang/libc/pull/3693">rust-lang/libc#3693</a></li>
<li>VxWorks: add <code>S_ISVTX</code> in <a
href="https://redirect.github.com/rust-lang/libc/pull/3768">rust-lang/libc#3768</a></li>
<li>VxWorks: add <code>vxCpuLib</code> and <code>taskLib</code>
functions <a
href="https://redirect.github.com/rust-lang/libc/pull/3861">rust-lang/libc#3861</a></li>
<li>WASIp2: add definitions for <code>std::net</code> support in <a
href="https://redirect.github.com/rust-lang/libc/pull/3892">rust-lang/libc#3892</a></li>
</ul>
<h3>Fixed</h3>
<ul>
<li>Correctly handle version checks when <code>clippy-driver</code> is
used <a
href="https://redirect.github.com/rust-lang/libc/pull/3893">rust-lang/libc#3893</a></li>
</ul>
<h3>Changed</h3>
<ul>
<li>EspIdf: change signal constants to c_int in <a
href="https://redirect.github.com/rust-lang/libc/pull/3895">rust-lang/libc#3895</a></li>
<li>HorizonOS: update network definitions in <a
href="https://redirect.github.com/rust-lang/libc/pull/3863">rust-lang/libc#3863</a></li>
<li>Linux: combine <code>ioctl</code> APIs in <a
href="https://redirect.github.com/rust-lang/libc/pull/3722">rust-lang/libc#3722</a></li>
<li>WASI: enable CI testing in <a
href="https://redirect.github.com/rust-lang/libc/pull/3869">rust-lang/libc#3869</a></li>
<li>WASIp2: enable CI testing in <a
href="https://redirect.github.com/rust-lang/libc/pull/3870">rust-lang/libc#3870</a></li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/rust-lang/libc/blob/0.2.159/CHANGELOG.md">libc's
changelog</a>.</em></p>
<blockquote>
<h2><a
href="https://github.com/rust-lang/libc/compare/0.2.158...0.2.159">0.2.159</a>
- 2024-09-24</h2>
<h3>Added</h3>
<ul>
<li>Android: add more <code>AT_*</code> constants in <a
href="https://redirect.github.com/rust-lang/libc/pull/3779">rust-lang/libc#3779</a></li>
<li>Apple: add missing <code>NOTE_*</code> constants in <a
href="https://redirect.github.com/rust-lang/libc/pull/3883">rust-lang/libc#3883</a></li>
<li>Hermit: add missing error numbers in <a
href="https://redirect.github.com/rust-lang/libc/pull/3858">rust-lang/libc#3858</a></li>
<li>Hurd: add <code>__timeval</code> for 64-bit support in <a
href="https://redirect.github.com/rust-lang/libc/pull/3786">rust-lang/libc#3786</a></li>
<li>Linux: add <code>epoll_pwait2</code> in <a
href="https://redirect.github.com/rust-lang/libc/pull/3868">rust-lang/libc#3868</a></li>
<li>Linux: add <code>mq_notify</code> in <a
href="https://redirect.github.com/rust-lang/libc/pull/3849">rust-lang/libc#3849</a></li>
<li>Linux: add missing <code>NFT_CT_*</code> constants in <a
href="https://redirect.github.com/rust-lang/libc/pull/3844">rust-lang/libc#3844</a></li>
<li>Linux: add the <code>fchmodat2</code> syscall in <a
href="https://redirect.github.com/rust-lang/libc/pull/3588">rust-lang/libc#3588</a></li>
<li>Linux: add the <code>mseal</code> syscall in <a
href="https://redirect.github.com/rust-lang/libc/pull/3798">rust-lang/libc#3798</a></li>
<li>OpenBSD: add <code>sendmmsg</code> and <code>recvmmsg</code> in <a
href="https://redirect.github.com/rust-lang/libc/pull/3831">rust-lang/libc#3831</a></li>
<li>Unix: add <code>IN6ADDR_ANY_INIT</code> and
<code>IN6ADDR_LOOPBACK_INIT</code> in <a
href="https://redirect.github.com/rust-lang/libc/pull/3693">rust-lang/libc#3693</a></li>
<li>VxWorks: add <code>S_ISVTX</code> in <a
href="https://redirect.github.com/rust-lang/libc/pull/3768">rust-lang/libc#3768</a></li>
<li>VxWorks: add <code>vxCpuLib</code> and <code>taskLib</code>
functions <a
href="https://redirect.github.com/rust-lang/libc/pull/3861">rust-lang/libc#3861</a></li>
<li>WASIp2: add definitions for <code>std::net</code> support in <a
href="https://redirect.github.com/rust-lang/libc/pull/3892">rust-lang/libc#3892</a></li>
</ul>
<h3>Fixed</h3>
<ul>
<li>Correctly handle version checks when <code>clippy-driver</code> is
used <a
href="https://redirect.github.com/rust-lang/libc/pull/3893">rust-lang/libc#3893</a></li>
</ul>
<h3>Changed</h3>
<ul>
<li>EspIdf: change signal constants to c_int in <a
href="https://redirect.github.com/rust-lang/libc/pull/3895">rust-lang/libc#3895</a></li>
<li>HorizonOS: update network definitions in <a
href="https://redirect.github.com/rust-lang/libc/pull/3863">rust-lang/libc#3863</a></li>
<li>Linux: combine <code>ioctl</code> APIs in <a
href="https://redirect.github.com/rust-lang/libc/pull/3722">rust-lang/libc#3722</a></li>
<li>WASI: enable CI testing in <a
href="https://redirect.github.com/rust-lang/libc/pull/3869">rust-lang/libc#3869</a></li>
<li>WASIp2: enable CI testing in <a
href="https://redirect.github.com/rust-lang/libc/pull/3870">rust-lang/libc#3870</a></li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/rust-lang/libc/commit/7373a1abe57da20efae9fd2ca891d7b905c19e03"><code>7373a1a</code></a>
chore: release (<a
href="https://redirect.github.com/rust-lang/libc/issues/3862">#3862</a>)</li>
<li><a
href="https://github.com/rust-lang/libc/commit/48668be46be0dbc2d3dfcf942778c37a07d38a87"><code>48668be</code></a>
Merge pull request <a
href="https://redirect.github.com/rust-lang/libc/issues/3931">#3931</a>
from tgross35/backport-remove-tmp-file</li>
<li><a
href="https://github.com/rust-lang/libc/commit/28bb64b1fe678ca090f9af08d786949d53285940"><code>28bb64b</code></a>
Remove temporary file that was added by accident</li>
<li><a
href="https://github.com/rust-lang/libc/commit/a515d07dd95093bc1c3a7b716f0936d2d0b989db"><code>a515d07</code></a>
Merge pull request <a
href="https://redirect.github.com/rust-lang/libc/issues/3904">#3904</a>
from tgross35/backport-buildrs-fix</li>
<li><a
href="https://github.com/rust-lang/libc/commit/abcb8f87986c8f57a28c4f67d7939272f4f8cbad"><code>abcb8f8</code></a>
Simplify the RUSTC_WRAPPER check</li>
<li><a
href="https://github.com/rust-lang/libc/commit/507833559bd0bfe04b5139c1607c3dc3208174f5"><code>5078335</code></a>
Fix rustc version when <code>clippy-driver</code> is used</li>
<li><a
href="https://github.com/rust-lang/libc/commit/57a7d465fa69c85bb96c98c84762ada90ad02077"><code>57a7d46</code></a>
Merge pull request <a
href="https://redirect.github.com/rust-lang/libc/issues/3902">#3902</a>
from tgross35/backport-horizon-network</li>
<li><a
href="https://github.com/rust-lang/libc/commit/a3e88691a9a1a41867b0692b67cc50f5b1d39eb2"><code>a3e8869</code></a>
Revise network definitions for HorizonOS</li>
<li><a
href="https://github.com/rust-lang/libc/commit/fdd3a268960639b4714c2829976b87b374fa0f9f"><code>fdd3a26</code></a>
Merge pull request <a
href="https://redirect.github.com/rust-lang/libc/issues/3900">#3900</a>
from tgross35/espid-cherry-pick</li>
<li><a
href="https://github.com/rust-lang/libc/commit/35060e8eb0bd7a64722fc7ff8ef475f6b15384a9"><code>35060e8</code></a>
Merge pull request <a
href="https://redirect.github.com/rust-lang/libc/issues/3901">#3901</a>
from tgross35/backport-epoll_pwait2</li>
<li>Additional commits viewable in <a
href="https://github.com/rust-lang/libc/compare/0.2.158...0.2.159">compare
view</a></li>
</ul>
</details>
<br />

Updates `is_executable` from 1.0.1 to 1.0.3
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/fitzgen/is_executable/commit/cfe991224073cdab13ff6a8133d1cacd8182e21a"><code>cfe9912</code></a>
Bump to version 1.0.3</li>
<li><a
href="https://github.com/fitzgen/is_executable/commit/d6fcf2f526963b4e12ab063fca255bbe75bca178"><code>d6fcf2f</code></a>
Remove old test about README.md being in sync with module docs</li>
<li><a
href="https://github.com/fitzgen/is_executable/commit/95f27a6d3dae185ee1332728e959e4ff7c6890d9"><code>95f27a6</code></a>
Remove old CI</li>
<li><a
href="https://github.com/fitzgen/is_executable/commit/e70c103b81b5e5e7f25d7973605181cc622f2578"><code>e70c103</code></a>
Update badges in README</li>
<li><a
href="https://github.com/fitzgen/is_executable/commit/61d2e9ba8cf05a1410ca69fd157ca234c65a8af7"><code>61d2e9b</code></a>
Add github actions</li>
<li><a
href="https://github.com/fitzgen/is_executable/commit/001b334761623dcc0182dded9f1e3b949f7cf79a"><code>001b334</code></a>
Bump to version 1.0.2</li>
<li><a
href="https://github.com/fitzgen/is_executable/commit/fab168c19690b6247f9e983fd0e0d0d8599c3bef"><code>fab168c</code></a>
Merge pull request <a
href="https://redirect.github.com/fitzgen/is_executable/issues/14">#14</a>
from lucieleblanc/master</li>
<li><a
href="https://github.com/fitzgen/is_executable/commit/82f9c68782656eb9ec2fcad978fce3c9e60a3072"><code>82f9c68</code></a>
replace is_file() --&gt; exists() because symlinks are ok</li>
<li><a
href="https://github.com/fitzgen/is_executable/commit/441c1c7df30116f3a4a1b8a999e457816d77cf7a"><code>441c1c7</code></a>
add file existence check before reading extension</li>
<li><a
href="https://github.com/fitzgen/is_executable/commit/ea10f6b2f8456bdcc5300027c5605ff6089b371c"><code>ea10f6b</code></a>
Merge pull request <a
href="https://redirect.github.com/fitzgen/is_executable/issues/11">#11</a>
from davide125/exclude</li>
<li>Additional commits viewable in <a
href="https://github.com/fitzgen/is_executable/compare/v1.0.1...v1.0.3">compare
view</a></li>
</ul>
</details>
<br />

Updates `derive-new` from 0.6.0 to 0.7.0
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/nrc/derive-new/commit/6626d8f566ee523ead38fe789b171f1b46993e49"><code>6626d8f</code></a>
Update compiletest</li>
<li><a
href="https://github.com/nrc/derive-new/commit/1e024ddf396e06690c0b39baa5a4f996ae88404b"><code>1e024dd</code></a>
cargo update, etc.</li>
<li><a
href="https://github.com/nrc/derive-new/commit/3389ef278665f8e0be249b6f4bd3cbfc727160a8"><code>3389ef2</code></a>
Fix doc tests</li>
<li><a
href="https://github.com/nrc/derive-new/commit/bd4486d85de87d5a543a7604f4e8f136c8b0e973"><code>bd4486d</code></a>
implement <code>into</code> and <code>into_iter</code></li>
<li><a
href="https://github.com/nrc/derive-new/commit/a9230ace30ffc43836e0e49e42e1203c7f079732"><code>a9230ac</code></a>
fix tests</li>
<li><a
href="https://github.com/nrc/derive-new/commit/77cb8287d22ca3aff803577a49321886895a43ee"><code>77cb828</code></a>
Merge pull request <a
href="https://redirect.github.com/nrc/derive-new/issues/67">#67</a> from
Paragit-Solutions/implement-new-method-visibility</li>
<li><a
href="https://github.com/nrc/derive-new/commit/cacbadabd235a83e978fcd52d9ed83dffff43abd"><code>cacbada</code></a>
Merge pull request <a
href="https://redirect.github.com/nrc/derive-new/issues/66">#66</a> from
shellixyz/patch-1</li>
<li><a
href="https://github.com/nrc/derive-new/commit/d11f63160c0829dbf06a1aab30f431c9b58ecc37"><code>d11f631</code></a>
Add documentation</li>
<li><a
href="https://github.com/nrc/derive-new/commit/3311408f8fc4844e857708bf2a222c939ac1066d"><code>3311408</code></a>
Add visibility to test struct to test compilation and correct macro
expansion</li>
<li><a
href="https://github.com/nrc/derive-new/commit/61853b79702bae6d0ffa343718310f20463687a4"><code>61853b7</code></a>
Make the default visibility public</li>
<li>Additional commits viewable in <a
href="https://github.com/nrc/derive-new/compare/0.6.0...0.7">compare
view</a></li>
</ul>
</details>
<br />

Updates `async-trait` from 0.1.81 to 0.1.83
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/dtolnay/async-trait/releases">async-trait's
releases</a>.</em></p>
<blockquote>
<h2>0.1.83</h2>
<ul>
<li>Prevent needless_arbitrary_self_type lint being produced in
generated code (<a
href="https://redirect.github.com/dtolnay/async-trait/issues/278">#278</a>)</li>
</ul>
<h2>0.1.82</h2>
<ul>
<li>Prevent elided_named_lifetimes lint being produced in generated code
(<a
href="https://redirect.github.com/dtolnay/async-trait/issues/276">#276</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/dtolnay/async-trait/commit/e6b4d471c64156338fb87386b7a7ad8543c3a205"><code>e6b4d47</code></a>
Release 0.1.83</li>
<li><a
href="https://github.com/dtolnay/async-trait/commit/bfe8d617660237b27eee620181586a16ff2f6a25"><code>bfe8d61</code></a>
Merge pull request <a
href="https://redirect.github.com/dtolnay/async-trait/issues/278">#278</a>
from dtolnay/arbself</li>
<li><a
href="https://github.com/dtolnay/async-trait/commit/7bd974b3a4db2c3ab321de2976d09d3ea2b82348"><code>7bd974b</code></a>
Ignore needless_arbitrary_self_type clippy lint in generated code</li>
<li><a
href="https://github.com/dtolnay/async-trait/commit/b53b4e755402ef91d2104d40b8f303ad0c56d2f9"><code>b53b4e7</code></a>
Add regression test for issue 277</li>
<li><a
href="https://github.com/dtolnay/async-trait/commit/f8e5bb43181450a17068f160e8a51d410ede1705"><code>f8e5bb4</code></a>
Release 0.1.82</li>
<li><a
href="https://github.com/dtolnay/async-trait/commit/8fbf118de30d3d30416d5a2dff496513433171c4"><code>8fbf118</code></a>
Merge pull request <a
href="https://redirect.github.com/dtolnay/async-trait/issues/276">#276</a>
from dtolnay/elidednamed</li>
<li><a
href="https://github.com/dtolnay/async-trait/commit/6fa246a0546fc678c4812ccb59306b6b264c27a0"><code>6fa246a</code></a>
Ignore nightly's new elided_named_lifetimes lint in generated code</li>
<li><a
href="https://github.com/dtolnay/async-trait/commit/d542a0dd74f366995e5924edc2d6ac7661e5d9ca"><code>d542a0d</code></a>
Upload CI Cargo.lock for reproducing failures</li>
<li><a
href="https://github.com/dtolnay/async-trait/commit/8828c35a86442dd05b6ac3aab5f0bac769e246f0"><code>8828c35</code></a>
Sort dependency features in Cargo.toml</li>
<li><a
href="https://github.com/dtolnay/async-trait/commit/ba9793af3f3936e2373ab4c482bf49ac67009df8"><code>ba9793a</code></a>
Update ui test suite to nightly-2024-08-11</li>
<li>Additional commits viewable in <a
href="https://github.com/dtolnay/async-trait/compare/0.1.81...0.1.83">compare
view</a></li>
</ul>
</details>
<br />

Updates `autocfg` from 1.3.0 to 1.4.0
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/cuviper/autocfg/commit/d07df6624a4573803a29397c0ccf636aa0b3d153"><code>d07df66</code></a>
Merge pull request <a
href="https://redirect.github.com/cuviper/autocfg/issues/73">#73</a>
from cuviper/release-1.4.0</li>
<li><a
href="https://github.com/cuviper/autocfg/commit/f6066f016441c2a25e0fa0d9d0521b1a79b0e14c"><code>f6066f0</code></a>
Release 1.4.0</li>
<li><a
href="https://github.com/cuviper/autocfg/commit/8af60eca650aed24db3042dbd0a2e1f61016b95e"><code>8af60ec</code></a>
Merge pull request <a
href="https://redirect.github.com/cuviper/autocfg/issues/70">#70</a>
from Techcable/feature/rustc-check-cfg</li>
<li><a
href="https://github.com/cuviper/autocfg/commit/52a995b6723ae015fbed7312d56803492f01e10a"><code>52a995b</code></a>
Apply suggestions from code review</li>
<li><a
href="https://github.com/cuviper/autocfg/commit/a8703c163f5aa66819f515356530420955374386"><code>a8703c1</code></a>
Attempt rust 1.0 compat for ci/verify-check-cfg</li>
<li><a
href="https://github.com/cuviper/autocfg/commit/ac78be804dbcf9e616d69a93c0ba918adc6a003a"><code>ac78be8</code></a>
Add ci test crate for check-cfg</li>
<li><a
href="https://github.com/cuviper/autocfg/commit/0b4a7617ad0e6ccf271dac7ab920a731195fab32"><code>0b4a761</code></a>
Have emit_has methods delegate wherever possible</li>
<li><a
href="https://github.com/cuviper/autocfg/commit/546f7c6c1c0e25b2dca136675934348118f603d2"><code>546f7c6</code></a>
Fix minor doc issues</li>
<li><a
href="https://github.com/cuviper/autocfg/commit/e0e0f18f54fb60f9c42a01c6571edcdab4542db6"><code>e0e0f18</code></a>
Automatically emit <code>rustc-check-cfg</code> directives for
AutoCfg</li>
<li><a
href="https://github.com/cuviper/autocfg/commit/1953a17319e667dd2ead9a4eae0645ed939eef24"><code>1953a17</code></a>
Merge pull request <a
href="https://redirect.github.com/cuviper/autocfg/issues/72">#72</a>
from cuviper/pretty-way</li>
<li>Additional commits viewable in <a
href="https://github.com/cuviper/autocfg/compare/1.3.0...1.4.0">compare
view</a></li>
</ul>
</details>
<br />

Updates `backtrace` from 0.3.73 to 0.3.74
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/rust-lang/backtrace-rs/releases">backtrace's
releases</a>.</em></p>
<blockquote>
<h2>0.3.74</h2>
<h2>What's Changed</h2>
<ul>
<li>QNX Neutrino 7.0 support, thanks to <a
href="https://github.com/nyurik"><code>@​nyurik</code></a> in <a
href="https://redirect.github.com/rust-lang/backtrace-rs/pull/648">rust-lang/backtrace-rs#648</a></li>
<li>Cleaned up our Android support. This should massively improve
backtraces for ones with the API level sufficient to ship with
libunwind, etc. Unfortunately, it comes at the cost of dropping support
for older ones! Thanks to <a
href="https://github.com/fengys"><code>@​fengys</code></a> in <a
href="https://redirect.github.com/rust-lang/backtrace-rs/pull/656">rust-lang/backtrace-rs#656</a></li>
<li>Made PrintFmt, which was using the
<code>Enum::__NonExhaustiveVariant</code> pattern, use
<code>#[non_exhaustive]</code> for real. Don't @ me if you were matching
on that! Thanks to <a
href="https://github.com/nyurik"><code>@​nyurik</code></a> in <a
href="https://redirect.github.com/rust-lang/backtrace-rs/pull/651">rust-lang/backtrace-rs#651</a></li>
<li>Massively cleaned up the windows code! We moved from winapi to
windows-sys with windows-targets thanks to <a
href="https://github.com/CraftSpider"><code>@​CraftSpider</code></a> and
<a href="https://github.com/ChrisDenton"><code>@​ChrisDenton</code></a>
in
<ul>
<li>Don't cast HANDLE to usize and back by <a
href="https://github.com/CraftSpider"><code>@​CraftSpider</code></a> in
<a
href="https://redirect.github.com/rust-lang/backtrace-rs/pull/635">rust-lang/backtrace-rs#635</a></li>
<li>Switch from <code>winapi</code> to <code>windows-sys</code> by <a
href="https://github.com/CraftSpider"><code>@​CraftSpider</code></a> in
<a
href="https://redirect.github.com/rust-lang/backtrace-rs/pull/641">rust-lang/backtrace-rs#641</a></li>
<li>Update windows bindings and use windows-targets by <a
href="https://github.com/ChrisDenton"><code>@​ChrisDenton</code></a> in
<a
href="https://redirect.github.com/rust-lang/backtrace-rs/pull/653">rust-lang/backtrace-rs#653</a></li>
</ul>
</li>
<li>A bunch of updated dependencies. Thanks <a
href="https://github.com/djc"><code>@​djc</code></a> and <a
href="https://github.com/khuey"><code>@​khuey</code></a>!</li>
<li>Sorry if you were testing this code in miri! It started yelling
about sussy casts. A lot. We did a bunch of internal cleanups that
should make it quiet down, thanks to <a
href="https://github.com/workingjubilee"><code>@​workingjubilee</code></a>
in <a
href="https://redirect.github.com/rust-lang/backtrace-rs/pull/641">rust-lang/backtrace-rs#641</a></li>
<li>Uhhh we had to tweak <code>dl_iterate_phdr</code> in <a
href="https://redirect.github.com/rust-lang/backtrace-rs/pull/660">rust-lang/backtrace-rs#660</a>
after Android revealed it was... kind of unsound actually and not doing
things like checking for null pointers before making slices! WHOOPS!
Thanks to <a
href="https://github.com/saethlin"><code>@​saethlin</code></a> for
implementing detection for precisely that in rustc! It's really hard to
find soundness issues in inherited codebases like this one...</li>
</ul>
<h2>New Contributors</h2>
<ul>
<li><a
href="https://github.com/CraftSpider"><code>@​CraftSpider</code></a>
made their first contribution in <a
href="https://redirect.github.com/rust-lang/backtrace-rs/pull/635">rust-lang/backtrace-rs#635</a></li>
<li><a
href="https://github.com/fengys1996"><code>@​fengys1996</code></a> made
their first contribution in <a
href="https://redirect.github.com/rust-lang/backtrace-rs/pull/656">rust-lang/backtrace-rs#656</a></li>
<li><a href="https://github.com/djc"><code>@​djc</code></a> made their
first contribution in <a
href="https://redirect.github.com/rust-lang/backtrace-rs/pull/657">rust-lang/backtrace-rs#657</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/rust-lang/backtrace-rs/compare/0.3.73...0.3.74">https://github.com/rust-lang/backtrace-rs/compare/0.3.73...0.3.74</a></p>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/rust-lang/backtrace-rs/commit/38d49aa0395c50047ab26e418a0cb30d9955fb64"><code>38d49aa</code></a>
Merge pull request <a
href="https://redirect.github.com/rust-lang/backtrace-rs/issues/658">#658</a>
from workingjubilee/cut-0.3.74</li>
<li><a
href="https://github.com/rust-lang/backtrace-rs/commit/c1749ce9a8cc0105b9d224e66f9ce4632133c1ea"><code>c1749ce</code></a>
Cut backtrace 0.3.74</li>
<li><a
href="https://github.com/rust-lang/backtrace-rs/commit/230570f2dac80a601f5c0b30da00cc9480bd35eb"><code>230570f</code></a>
Merge pull request <a
href="https://redirect.github.com/rust-lang/backtrace-rs/issues/660">#660</a>
from workingjubilee/dont-unsoundly-iterate-phdr</li>
<li><a
href="https://github.com/rust-lang/backtrace-rs/commit/153f510013e9d486103dac7994d7f75205af397a"><code>153f510</code></a>
Do not destructure maybe-uninit fields</li>
<li><a
href="https://github.com/rust-lang/backtrace-rs/commit/38589464ed3a901794f5858ccbd7f996f6712f64"><code>3858946</code></a>
Revise dl_iterate_phdr callback to be sound-ish</li>
<li><a
href="https://github.com/rust-lang/backtrace-rs/commit/7d062c63749a4c07d9307c96b6cd9485ccd1ad18"><code>7d062c6</code></a><code>rust-lang/backtrace-rs#653</code></li>
<li><a
href="https://github.com/rust-lang/backtrace-rs/commit/fc37b22dc8a384d93f6b7b4817266eec6433875e"><code>fc37b22</code></a><code>rust-lang/backtrace-rs#657</code></li>
<li><a
href="https://github.com/rust-lang/backtrace-rs/commit/600beaa5074be0f40279584450d995c319061ce8"><code>600beaa</code></a><code>rust-lang/backtrace-rs#648</code></li>
<li><a
href="https://github.com/rust-lang/backtrace-rs/commit/84b6c1d56f4bd1b4297187db863c2db6d436c1cf"><code>84b6c1d</code></a><code>rust-lang/backtrace-rs#652</code></li>
<li><a
href="https://github.com/rust-lang/backtrace-rs/commit/95c3bacab9364620864208b651e77a524900480d"><code>95c3bac</code></a>
Make enum
<code>print::PrintFmt</code><code>rust-lang/backtrace-rs#651</code></li>
<li>Additional commits viewable in <a
href="https://github.com/rust-lang/backtrace-rs/compare/0.3.73...0.3.74">compare
view</a></li>
</ul>
</details>
<br />

Updates `bytes` from 1.7.1 to 1.7.2
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/tokio-rs/bytes/releases">bytes's
releases</a>.</em></p>
<blockquote>
<h2>Bytes 1.7.2</h2>
<h1>1.7.2 (September 17, 2024)</h1>
<h3>Fixed</h3>
<ul>
<li>Fix default impl of <code>Buf::{get_int, get_int_le}</code> (<a
href="https://redirect.github.com/tokio-rs/bytes/issues/732">#732</a>)</li>
</ul>
<h3>Documented</h3>
<ul>
<li>Fix double spaces in comments and doc comments (<a
href="https://redirect.github.com/tokio-rs/bytes/issues/731">#731</a>)</li>
</ul>
<h3>Internal changes</h3>
<ul>
<li>Ensure BytesMut::advance reduces capacity (<a
href="https://redirect.github.com/tokio-rs/bytes/issues/728">#728</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/tokio-rs/bytes/blob/master/CHANGELOG.md">bytes's
changelog</a>.</em></p>
<blockquote>
<h1>1.7.2 (September 17, 2024)</h1>
<h3>Fixed</h3>
<ul>
<li>Fix default impl of <code>Buf::{get_int, get_int_le}</code> (<a
href="https://redirect.github.com/tokio-rs/bytes/issues/732">#732</a>)</li>
</ul>
<h3>Documented</h3>
<ul>
<li>Fix double spaces in comments and doc comments (<a
href="https://redirect.github.com/tokio-rs/bytes/issues/731">#731</a>)</li>
</ul>
<h3>Internal changes</h3>
<ul>
<li>Ensure BytesMut::advance reduces capacity (<a
href="https://redirect.github.com/tokio-rs/bytes/issues/728">#728</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/tokio-rs/bytes/commit/d7c1d658d90c922eeee1dbc29bc6f6fd9a1a1a66"><code>d7c1d65</code></a>
chore: prepare bytes v1.7.2 (<a
href="https://redirect.github.com/tokio-rs/bytes/issues/736">#736</a>)</li>
<li><a
href="https://github.com/tokio-rs/bytes/commit/ac46ebdd464144cecd7463a96ca9eb347458ae94"><code>ac46ebd</code></a>
ci: update nightly to nightly-2024-09-15 (<a
href="https://redirect.github.com/tokio-rs/bytes/issues/734">#734</a>)</li>
<li><a
href="https://github.com/tokio-rs/bytes/commit/79fb85323cf4cf14d9b85f487b65fc147030cf4b"><code>79fb853</code></a>
fix: apply sign extension when decoding int (<a
href="https://redirect.github.com/tokio-rs/bytes/issues/732">#732</a>)</li>
<li><a
href="https://github.com/tokio-rs/bytes/commit/291df5acc94b82a48765e67eeb1c1a2074539e68"><code>291df5a</code></a>
Fix double spaces in comments and doc comments (<a
href="https://redirect.github.com/tokio-rs/bytes/issues/731">#731</a>)</li>
<li><a
href="https://github.com/tokio-rs/bytes/commit/ed7d5ff39e39c2802c0fa9e2fc308f6a3e0beda7"><code>ed7d5ff</code></a>
test: ensure BytesMut::advance reduces capacity (<a
href="https://redirect.github.com/tokio-rs/bytes/issues/728">#728</a>)</li>
<li>See full diff in <a
href="https://github.com/tokio-rs/bytes/compare/v1.7.1...v1.7.2">compare
view</a></li>
</ul>
</details>
<br />

Updates `cc` from 1.1.14 to 1.1.22
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/rust-lang/cc-rs/releases">cc's
releases</a>.</em></p>
<blockquote>
<h2>cc-v1.1.22</h2>
<h3>Other</h3>
<ul>
<li>Don't rerun if PATH changes (<a
href="https://redirect.github.com/rust-lang/cc-rs/pull/1215">#1215</a>)</li>
</ul>
<h2>cc-v1.1.21</h2>
<h3>Other</h3>
<ul>
<li>disable pic for targets that end in <code>-none</code> (<a
href="https://redirect.github.com/rust-lang/cc-rs/pull/1212">#1212</a>)</li>
</ul>
<h2>cc-v1.1.20</h2>
<h3>Other</h3>
<ul>
<li>Add buildcache as known Rust and C/C++ compiler wrapper (<a
href="https://redirect.github.com/rust-lang/cc-rs/pull/1209">#1209</a>)</li>
</ul>
<h2>cc-v1.1.19</h2>
<h3>Other</h3>
<ul>
<li>Add support arm64e-apple-darwin (<a
href="https://redirect.github.com/rust-lang/cc-rs/pull/1207">#1207</a>)</li>
</ul>
<h2>cc-v1.1.18</h2>
<h3>Other</h3>
<ul>
<li>Fixed unsoundness in <code>StderrForwarder::forward_available</code>
(<a
href="https://redirect.github.com/rust-lang/cc-rs/pull/1203">#1203</a>)</li>
</ul>
<h2>cc-v1.1.17</h2>
<h3>Fixed</h3>
<ul>
<li>fix finding toolchains when invoked by msbuild (<a
href="https://redirect.github.com/rust-lang/cc-rs/pull/1201">#1201</a>)</li>
</ul>
<h2>cc-v1.1.16</h2>
<h3>Other</h3>
<ul>
<li>Treat VxWorks wr-cc as a Gnu compiler (<a
href="https://redirect.github.com/rust-lang/cc-rs/pull/1198">#1198</a>)</li>
</ul>
<h2>cc-v1.1.15</h2>
<h3>Other</h3>
<ul>
<li>Add -mfloat-abi=hard as a default argument when using any
arm/thumb-none-eabihf target (<a
href="https://redirect.github.com/rust-lang/cc-rs/pull/1194">#1194</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/rust-lang/cc-rs/blob/main/CHANGELOG.md">cc's
changelog</a>.</em></p>
<blockquote>
<h2><a
href="https://github.com/rust-lang/cc-rs/compare/cc-v1.1.21...cc-v1.1.22">1.1.22</a>
- 2024-09-27</h2>
<h3>Other</h3>
<ul>
<li>Don't rerun if PATH changes (<a
href="https://redirect.github.com/rust-lang/cc-rs/pull/1215">#1215</a>)</li>
</ul>
<h2><a
href="https://github.com/rust-lang/cc-rs/compare/cc-v1.1.20...cc-v1.1.21">1.1.21</a>
- 2024-09-18</h2>
<h3>Other</h3>
<ul>
<li>disable pic for targets that end in <code>-none</code> (<a
href="https://redirect.github.com/rust-lang/cc-rs/pull/1212">#1212</a>)</li>
</ul>
<h2><a
href="https://github.com/rust-lang/cc-rs/compare/cc-v1.1.19...cc-v1.1.20">1.1.20</a>
- 2024-09-17</h2>
<h3>Other</h3>
<ul>
<li>Add buildcache as known Rust and C/C++ compiler wrapper (<a
href="https://redirect.github.com/rust-lang/cc-rs/pull/1209">#1209</a>)</li>
</ul>
<h2><a
href="https://github.com/rust-lang/cc-rs/compare/cc-v1.1.18...cc-v1.1.19">1.1.19</a>
- 2024-09-15</h2>
<h3>Other</h3>
<ul>
<li>Add support arm64e-apple-darwin (<a
href="https://redirect.github.com/rust-lang/cc-rs/pull/1207">#1207</a>)</li>
</ul>
<h2><a
href="https://github.com/rust-lang/cc-rs/compare/cc-v1.1.17...cc-v1.1.18">1.1.18</a>
- 2024-09-07</h2>
<h3>Other</h3>
<ul>
<li>Fixed unsoundness in <code>StderrForwarder::forward_available</code>
(<a
href="https://redirect.github.com/rust-lang/cc-rs/pull/1203">#1203</a>)</li>
</ul>
<h2><a
href="https://github.com/rust-lang/cc-rs/compare/cc-v1.1.16...cc-v1.1.17">1.1.17</a>
- 2024-09-06</h2>
<h3>Fixed</h3>
<ul>
<li>fix finding toolchains when invoked by msbuild (<a
href="https://redirect.github.com/rust-lang/cc-rs/pull/1201">#1201</a>)</li>
</ul>
<h2><a
href="https://github.com/rust-lang/cc-rs/compare/cc-v1.1.15...cc-v1.1.16">1.1.16</a>
- 2024-09-04</h2>
<h3>Other</h3>
<ul>
<li>Treat VxWorks wr-cc as a Gnu compiler (<a
href="https://redirect.github.com/rust-lang/cc-rs/pull/1198">#1198</a>)</li>
</ul>
<h2><a
href="https://github.com/rust-lang/cc-rs/compare/cc-v1.1.14...cc-v1.1.15">1.1.15</a>
- 2024-08-26</h2>
<h3>Other</h3>
<ul>
<li>Add -mfloat-abi=hard as a default argument when using any
arm/thumb-none-eabihf target (<a
href="https://redirect.github.com/rust-lang/cc-rs/pull/1194">#1194</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/rust-lang/cc-rs/commit/5f5e1c8c18b53aa1524f720ce21b5a7986a0bf6b"><code>5f5e1c8</code></a>
chore: release (<a
href="https://redirect.github.com/rust-lang/cc-rs/issues/1216">#1216</a>)</li>
<li><a
href="https://github.com/rust-lang/cc-rs/commit/71c672b4afa2f9b6e5046a963d3b5bc1f9ccd2f8"><code>71c672b</code></a>
Don't rerun if PATH changes (<a
href="https://redirect.github.com/rust-lang/cc-rs/issues/1215">#1215</a>)</li>
<li><a
href="https://github.com/rust-lang/cc-rs/commit/748b777e553af972fb0484ece2626beaa354e0a2"><code>748b777</code></a>
chore: release (<a
href="https://redirect.github.com/rust-lang/cc-rs/issues/1213">#1213</a>)</li>
<li><a
href="https://github.com/rust-lang/cc-rs/commit/270ec653371a12498c3a338fb8b4a5d35e8388c6"><code>270ec65</code></a>
disable pic for targets that end in <code>-none</code> (<a
href="https://redirect.github.com/rust-lang/cc-rs/issues/1212">#1212</a>)</li>
<li><a
href="https://github.com/rust-lang/cc-rs/commit/92a5e28c084aefc101d2f71f236614d9fcaa1f9e"><code>92a5e28</code></a>
chore: release (<a
href="https://redirect.github.com/rust-lang/cc-rs/issues/1210">#1210</a>)</li>
<li><a
href="https://github.com/rust-lang/cc-rs/commit/dab5d7adb4c090ac9d8650e7d97897a711ac7a14"><code>dab5d7a</code></a>
Add buildcache as known Rust and C/C++ compiler wrapper (<a
href="https://redirect.github.com/rust-lang/cc-rs/issues/1209">#1209</a>)</li>
<li><a
href="https://github.com/rust-lang/cc-rs/commit/c0b3eae28300fc8b36eb3a0b519ef4083f1a129e"><code>c0b3eae</code></a>
chore: release (<a
href="https://redirect.github.com/rust-lang/cc-rs/issues/1208">#1208</a>)</li>
<li><a
href="https://github.com/rust-lang/cc-rs/commit/278a606afb79b00cfe7a1372dbaa3529ecce3dc4"><code>278a606</code></a>
Add support arm64e-apple-darwin (<a
href="https://redirect.github.com/rust-lang/cc-rs/issues/1207">#1207</a>)</li>
<li><a
href="https://github.com/rust-lang/cc-rs/commit/668facdbbcade9ebfb48c8ea0b658fc2688c4e5c"><code>668facd</code></a>
chore: release (<a
href="https://redirect.github.com/rust-lang/cc-rs/issues/1204">#1204</a>)</li>
<li><a
href="https://github.com/rust-lang/cc-rs/commit/5e161c6f4452fe63985bdfc78462ceda94c99805"><code>5e161c6</code></a>
Fixed unsoundness in <code>StderrForwarder::forward_available</code> (<a
href="https://redirect.github.com/rust-lang/cc-rs/issues/1203">#1203</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/rust-lang/cc-rs/compare/cc-v1.1.14...cc-v1.1.22">compare
view</a></li>
</ul>
</details>
<br />

Updates `clap_builder` from 4.5.15 to 4.5.18
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/clap-rs/clap/releases">clap_builder's
releases</a>.</em></p>
<blockquote>
<h2>v4.5.18</h2>
<h2>[4.5.18] - 2024-09-20</h2>
<h3>Features</h3>
<ul>
<li><em>(builder)</em> Expose <code>Arg::get_display_order</code> and
<code>Command::get_display_order</code></li>
</ul>
<h2>v4.5.17</h2>
<h2>[4.5.17] - 2024-09-04</h2>
<h3>Fixes</h3>
<ul>
<li><em>(help)</em> Style required argument groups</li>
<li><em>(derive)</em> Improve error messages when unsupported fields are
used</li>
</ul>
<h2>v4.5.16</h2>
<h2>[4.5.16] - 2024-08-15</h2>
<h3>Fixes</h3>
<ul>
<li><em>(derive)</em> Improve error messages when <code>derive</code>
feature is missing</li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/clap-rs/clap/blob/master/CHANGELOG.md">clap_builder's
changelog</a>.</em></p>
<blockquote>
<h2>[4.5.18] - 2024-09-20</h2>
<h3>Features</h3>
<ul>
<li><em>(builder)</em> Expose <code>Arg::get_display_order</code> and
<code>Command::get_display_order</code></li>
</ul>
<h2>[4.5.17] - 2024-09-04</h2>
<h3>Fixes</h3>
<ul>
<li><em>(help)</em> Style required argument groups</li>
<li><em>(derive)</em> Improve error messages when unsupported fields are
used</li>
</ul>
<h2>[4.5.16] - 2024-08-15</h2>
<h3>Fixes</h3>
<ul>
<li><em>(derive)</em> Improve error messages when <code>derive</code>
feature is missing</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/clap-rs/clap/commit/0d142f6c04a702b791d2dfec8327661ba1b6d16c"><code>0d142f6</code></a>
chore: Release</li>
<li><a
href="https://github.com/clap-rs/clap/commit/0facf1f370e7966a4d97bce56d1d10ca4c80d0ae"><code>0facf1f</code></a>
docs: Update changelog</li>
<li><a
href="https://github.com/clap-rs/clap/commit/ee6af99c6c5e239c0f2c92f9d1baf8aa3bb4af90"><code>ee6af99</code></a>
Merge pull request <a
href="https://redirect.github.com/clap-rs/clap/issues/5743">#5743</a>
from epage/sort</li>
<li><a
href="https://github.com/clap-rs/clap/commit/232ee106615e997f0841bb3de97eed126b929fe3"><code>232ee10</code></a>
fix(complete): Use existing display order for Arg/Command</li>
<li><a
href="https://github.com/clap-rs/clap/commit/c6b5d627a0c17527630e4086a4fe83589365d1f0"><code>c6b5d62</code></a>
feat(builder): Expose get_display_order</li>
<li><a
href="https://github.com/clap-rs/clap/commit/67d9fef9cee8f1b297aed73e6d95f78744b43a27"><code>67d9fef</code></a>
feat(complete): Give control over display order</li>
<li><a
href="https://github.com/clap-rs/clap/commit/59a61e188fbb9999db52f567e3951d3720204084"><code>59a61e1</code></a>
refactor(complete): Pull out common candidate code</li>
<li><a
href="https://github.com/clap-rs/clap/commit/144879194081212046d5566572bfa15ea9bcca35"><code>1448791</code></a>
fix(complete): Specify tags for built-in candiates</li>
<li><a
href="https://github.com/clap-rs/clap/commit/a4aa5dffdf46a2975f2b2d51ce7e618e19250ead"><code>a4aa5df</code></a>
feat(complete): Group by tag</li>
<li><a
href="https://github.com/clap-rs/clap/commit/a126149a809f01586ccb6d9299eb2fc2c87d8fe0"><code>a126149</code></a>
refactor(complete): Remove redundant dedup</li>
<li>Additional commits viewable in <a
href="https://github.com/clap-rs/clap/compare/v4.5.15...v4.5.18">compare
view</a></li>
</ul>
</details>
<br />

Updates `clap_derive` from 4.5.13 to 4.5.18
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/clap-rs/clap/releases">clap_derive's
releases</a>.</em></p>
<blockquote>
<h2>v4.5.18</h2>
<h2>[4.5.18] - 2024-09-20</h2>
<h3>Features</h3>
<ul>
<li><em>(builder)</em> Expose <code>Arg::get_display_order</code> and
<code>Command::get_display_order</code></li>
</ul>
<h2>v4.5.17</h2>
<h2>[4.5.17] - 2024-09-04</h2>
<h3>Fixes</h3>
<ul>
<li><em>(help)</em> Style required argument groups</li>
<li><em>(derive)</em> Improve error messages when unsupported fields are
used</li>
</ul>
<h2>v4.5.16</h2>
<h2>[4.5.16] - 2024-08-15</h2>
<h3>Fixes</h3>
<ul>
<li><em>(derive)</em> Improve error messages when <code>derive</code>
feature is missing</li>
</ul>
<h2>v4.5.15</h2>
<h2>[4.5.15] - 2024-08-10</h2>
<h3>Compatiblity</h3>
<ul>
<li><em>(unstable-ext)</em> <code>Arg::remove</code> changed return
types</li>
</ul>
<h3>Fixes</h3>
<ul>
<li><em>(unstable-ext)</em> Make <code>Arg::remove</code> return the
removed item</li>
</ul>
<h2>v4.5.14</h2>
<h2>[4.5.14] - 2024-08-08</h2>
<h3>Features</h3>
<ul>
<li><em>(unstable-ext)</em> Added <code>Arg::add</code> for attaching
arbitrary state, like completion hints, to <code>Arg</code> without
<code>Arg</code> knowing about it</li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/clap-rs/clap/blob/master/CHANGELOG.md">clap_derive's
changelog</a>.</em></p>
<blockquote>
<h2>[4.5.18] - 2024-09-20</h2>
<h3>Features</h3>
<ul>
<li><em>(builder)</em> Expose <code>Arg::get_display_order</code> and
<code>Command::get_display_order</code></li>
</ul>
<h2>[4.5.17] - 2024-09-04</h2>
<h3>Fixes</h3>
<ul>
<li><em>(help)</em> Style required argument groups</li>
<li><em>(derive)</em> Improve error messages when unsupported fields are
used</li>
</ul>
<h2>[4.5.16] - 2024-08-15</h2>
<h3>Fixes</h3>
<ul>
<li><em>(derive)</em> Improve error messages when <code>derive</code>
feature is missing</li>
</ul>
<h2>[4.5.15] - 2024-08-10</h2>
<h3>Compatiblity</h3>
<ul>
<li><em>(unstable-ext)</em> <code>Arg::remove</code> changed return
types</li>
</ul>
<h3>Fixes</h3>
<ul>
<li><em>(unstable-ext)</em> Make <code>Arg::remove</code> return the
removed item</li>
</ul>
<h2>[4.5.14] - 2024-08-08</h2>
<h3>Features</h3>
<ul>
<li><em>(unstable-ext)</em> Added <code>Arg::add</code> for attaching
arbitrary state, like completion hints, to <code>Arg</code> without
<code>Arg</code> knowing about it</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/clap-rs/clap/commit/0d142f6c04a702b791d2dfec8327661ba1b6d16c"><code>0d142f6</code></a>
chore: Release</li>
<li><a
href="https://github.com/clap-rs/clap/commit/0facf1f370e7966a4d97bce56d1d10ca4c80d0ae"><code>0facf1f</code></a>
docs: Update changelog</li>
<li><a
href="https://github.com/clap-rs/clap/commit/ee6af99c6c5e239c0f2c92f9d1baf8aa3bb4af90"><code>ee6af99</code></a>
Merge pull request <a
href="https://redirect.github.com/clap-rs/clap/issues/5743">#5743</a>
from epage/sort</li>
<li><a
href="https://github.com/clap-rs/clap/commit/232ee106615e997f0841bb3de97eed126b929fe3"><code>232ee10</code></a>
fix(complete): Use existing display order for Arg/Command</li>
<li><a
href="https://github.com/clap-rs/clap/commit/c6b5d627a0c17527630e4086a4fe83589365d1f0"><code>c6b5d62</code></a>
feat(builder): Expose get_display_order</li>
<li><a
href="https://github.com/clap-rs/clap/commit/67d9fef9cee8f1b297aed73e6d95f78744b43a27"><code>67d9fef</code></a>
feat(complete): Give control over display order</li>
<li><a
href="https://github.com/clap-rs/clap/commit/59a61e188fbb9999db52f567e3951d3720204084"><code>59a61e1</code></a>
refactor(complete): Pull out common candidate code</li>
<li><a
href="https://github.com/clap-rs/clap/commit/144879194081212046d5566572bfa15ea9bcca35"><code>1448791</code></a>
fix(complete): Specify tags for built-in candiates</li>
<li><a
href="https://github.com/clap-rs/clap/commit/a4aa5dffdf46a2975f2b2d51ce7e618e19250ead"><code>a4aa5df</code></a>
feat(complete): Group by tag</li>
<li><a
href="https://github.com/clap-rs/clap/commit/a126149a809f01586ccb6d9299eb2fc2c87d8fe0"><code>a126149</code></a>
refactor(complete): Remove redundant dedup</li>
<li>Additional commits viewable in <a
href="https://github.com/clap-rs/clap/compare/v4.5.13...v4.5.18">compare
view</a></li>
</ul>
</details>
<br />

Updates `const_format_proc_macros` from 0.2.32 to 0.2.33
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/rodrimati1992/const_format_crates/blob/master/Changelog.md">const_format_proc_macros's
changelog</a>.</em></p>
<blockquote>
<h3>0.2.33</h3>
<p>Fixed Rust Analyzer style warning for assertion macros.</p>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li>See full diff in <a
href="https://github.com/rodrimati1992/const_format_crates/commits">compare
view</a></li>
</ul>
</details>
<br />

Updates `cpufeatures` from 0.2.13 to 0.2.14
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/RustCrypto/utils/commit/6a87dce97c9f927bea999ab957ccb6bc60a6c36f"><code>6a87dce</code></a>
cpufeatures v0.2.14 (<a
href="https://redirect.github.com/RustCrypto/utils/issues/1104">#1104</a>)</li>
<li><a
href="https://github.com/RustCrypto/utils/commit/4be67893ccece4823b606c5e29eccd44f7e07450"><code>4be6789</code></a>
aarch64-dit: initial crate (<a
href="https://redirect.github.com/RustCrypto/utils/issues/1102">#1102</a>)</li>
<li><a
href="https://github.com/RustCrypto/utils/commit/141756093ae5ee316af9cd3b459d4c5225bc86dd"><code>1417560</code></a>
README.md(s): use img.shields.io crate version badges</li>
<li><a
href="https://github.com/RustCrypto/utils/commit/cfa21ea50a22df26a52e17649e203e0c2657154d"><code>cfa21ea</code></a>
cpufeatures: add DIT support for AArch64 Linux targets (<a
href="https://redirect.github.com/RustCrypto/utils/issues/1101">#1101</a>)</li>
<li><a
href="https://github.com/RustCrypto/utils/commit/1ad40787ec88039f829144ef59b7bc506eaf07ed"><code>1ad4078</code></a>
cpufeatures: add support for DIT detection on Apple silicon (<a
href="https://redirect.github.com/RustCrypto/utils/issues/1100">#1100</a>)</li>
<li><a
href="https://github.com/RustCrypto/utils/commit/5d46aba5ef3720e854f48d93243c247e4611b125"><code>5d46aba</code></a>
block-buffer: release v0.11.0-rc.1 (<a
href="https://redirect.github.com/RustCrypto/utils/issues/1098">#1098</a>)</li>
<li>See full diff in <a
href="https://github.com/RustCrypto/utils/compare/cpufeatures-v0.2.13...cpufeatures-v0.2.14">compare
view</a></li>
</ul>
</details>
<br />

Updates `fastrand` from 2.1.0 to 2.1.1
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/smol-rs/fastrand/releases">fastrand's
releases</a>.</em></p>
<blockquote>
<h2>v2.1.1</h2>
<ul>
<li>Remove support for 128-bit targets, as they are not supported by
rustc yet. (<a
href="https://redirect.github.com/smol-rs/fastrand/issues/87">#87</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/smol-rs/fastrand/blob/master/CHANGELOG.md">fastrand's
changelog</a>.</em></p>
<blockquote>
<h1>Version 2.1.1</h1>
<ul>
<li>Remove support for 128-bit targets, as they are not supported by
rustc yet. (<a
href="https://redirect.github.com/smol-rs/fastrand/issues/87">#87</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/smol-rs/fastrand/commit/9d1a66fe46cee30e6c716812a9df467c653fa290"><code>9d1a66f</code></a>
v2.1.1</li>
<li><a
href="https://github.com/smol-rs/fastrand/commit/d05504dee3e2ec359fca62db9353de2ad3dfff40"><code>d05504d</code></a>
bugfix: Remove 128-bit value generator</li>
<li><a
href="https://github.com/smol-rs/fastrand/commit/7e60c7f688f9be3dcd4f59f216c87dac88ca2902"><code>7e60c7f</code></a>
chore: Forgot to bump the version</li>
<li>See full diff in <a
href="https://github.com/smol-rs/fastrand/compare/v2.1.0...v2.1.1">compare
view</a></li>
</ul>
</details>
<br />

Updates `flate2` from 1.0.32 to 1.0.34
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/rust-lang/flate2-rs/releases">flate2's
releases</a>.</em></p>
<blockquote>
<h2>1.0.34</h2>
<h2>What's Changed</h2>
<ul>
<li>Add minimum build test back in to CI by <a
href="https://github.com/jongiddy"><code>@​jongiddy</code></a> in <a
href="https://redirect.github.com/rust-lang/flate2-rs/pull/426">rust-lang/flate2-rs#426</a></li>
<li>docs: fix compression level range from 0-9 to 0-10 by <a
href="https://github.com/ByteBaker"><code>@​ByteBaker</code></a> in <a
href="https://redirect.github.com/rust-lang/flate2-rs/pull/427">rust-lang/flate2-rs#427</a></li>
<li>Document backend differences in compression levels by <a
href="https://github.com/Shnatsel"><code>@​Shnatsel</code></a> in <a
href="https://redirect.github.com/rust-lang/flate2-rs/pull/430">rust-lang/flate2-rs#430</a></li>
<li>Upgrade zlib-rs to 0.3.0 to get multiple bugfixes by <a
href="https://github.com/Shnatsel"><code>@​Shnatsel</code></a> in <a
href="https://redirect.github.com/rust-lang/flate2-rs/pull/428">rust-lang/flate2-rs#428</a></li>
<li>Better wording in compression level docs by <a
href="https://github.com/Shnatsel"><code>@​Shnatsel</code></a> in <a
href="https://redirect.github.com/rust-lang/flate2-rs/pull/431">rust-lang/flate2-rs#431</a></li>
</ul>
<h2>New Contributors</h2>
<ul>
<li><a href="https://github.com/ByteBaker"><code>@​ByteBaker</code></a>
made their first contribution in <a
href="https://redirect.github.com/rust-lang/flate2-rs/pull/427">rust-lang/flate2-rs#427</a></li>
<li><a href="https://github.com/Shnatsel"><code>@​Shnatsel</code></a>
made their first contribution in <a
href="https://redirect.github.com/rust-lang/flate2-rs/pull/430">rust-lang/flate2-rs#430</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/rust-lang/flate2-rs/compare/1.0.33...1.0.34">https://github.com/rust-lang/flate2-rs/compare/1.0.33...1.0.34</a></p>
<h2>1.0.33 - fix minimal manifest versions</h2>
<h2>What's Changed</h2>
<ul>
<li>Fix msrv: Run msrv checks with minimal versions by <a
href="https://github.com/NobodyXu"><code>@​NobodyXu</code></a> in <a
href="https://redirect.github.com/rust-lang/flate2-rs/pull/425">rust-lang/flate2-rs#425</a></li>
</ul>
<h2>New Contributors</h2>
<ul>
<li><a href="https://github.com/NobodyXu"><code>@​NobodyXu</code></a>
made their first contribution in <a
href="https://redirect.github.com/rust-lang/flate2-rs/pull/425">rust-lang/flate2-rs#425</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/rust-lang/flate2-rs/compare/1.0.32...1.0.33">https://github.com/rust-lang/flate2-rs/compare/1.0.32...1.0.33</a></p>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/rust-lang/flate2-rs/commit/1a28821dc116dac14178858be056e4a58ef8f501"><code>1a28821</code></a>
Merge pull request <a
href="https://redirect.github.com/rust-lang/flate2-rs/issues/431">#431</a>
from Shnatsel/better-wording</li>
<li><a
href="https://github.com/rust-lang/flate2-rs/commit/2c29780e5093b10c21954384cd97243770376814"><code>2c29780</code></a>
Merge pull request <a
href="https://redirect.github.com/rust-lang/flate2-rs/issues/428">#428</a>
from Shnatsel/upgrade-zlib-rs</li>
<li><a
href="https://github.com/rust-lang/flate2-rs/commit/423981aede8670a51d2c3aa657ae528152c0f64e"><code>423981a</code></a>
Better wording in compression level docs</li>
<li><a
href="https://github.com/rust-lang/flate2-rs/commit/da5c8cfd917b0ec2aeacc2e514b27b6bd50726e4"><code>da5c8cf</code></a>
Bump version</li>
<li><a
href="https://github.com/rust-lang/flate2-rs/commit/eeee4c641187628ec8676ffb24300c5da6bfb066"><code>eeee4c6</code></a>
Merge pull request <a
href="https://redirect.github.com/rust-lang/flate2-rs/issues/430">#430</a>
from Shnatsel/detailed-level-docs</li>
<li><a
href="https://github.com/rust-lang/flate2-rs/commit/731df32113188f3372367402b9ea2b…
backslashxx pushed a commit to backslashxx/KernelSU that referenced this pull request Feb 3, 2025
…tiann#2098)

Bumps the crates group with 25 updates in the /userspace/ksud directory:

| Package | From | To |
| --- | --- | --- |
| [anyhow](https://github.com/dtolnay/anyhow) | `1.0.86` | `1.0.89` |
| [clap](https://github.com/clap-rs/clap) | `4.5.16` | `4.5.18` |
| [const_format](https://github.com/rodrimati1992/const_format_crates) |
`0.2.32` | `0.2.33` |
| [serde](https://github.com/serde-rs/serde) | `1.0.208` | `1.0.210` |
| [serde_json](https://github.com/serde-rs/json) | `1.0.125` | `1.0.128`
|
| [libc](https://github.com/rust-lang/libc) | `0.2.158` | `0.2.159` |
| [is_executable](https://github.com/fitzgen/is_executable) | `1.0.1` |
`1.0.3` |
| [derive-new](https://github.com/nrc/derive-new) | `0.6.0` | `0.7.0` |
| [async-trait](https://github.com/dtolnay/async-trait) | `0.1.81` |
`0.1.83` |
| [autocfg](https://github.com/cuviper/autocfg) | `1.3.0` | `1.4.0` |
| [backtrace](https://github.com/rust-lang/backtrace-rs) | `0.3.73` |
`0.3.74` |
| [bytes](https://github.com/tokio-rs/bytes) | `1.7.1` | `1.7.2` |
| [cc](https://github.com/rust-lang/cc-rs) | `1.1.14` | `1.1.22` |
| [cpufeatures](https://github.com/RustCrypto/utils) | `0.2.13` |
`0.2.14` |
| [fastrand](https://github.com/smol-rs/fastrand) | `2.1.0` | `2.1.1` |
| [flate2](https://github.com/rust-lang/flate2-rs) | `1.0.32` | `1.0.34`
|
| [iana-time-zone](https://github.com/strawlab/iana-time-zone) |
`0.1.60` | `0.1.61` |
| [indexmap](https://github.com/indexmap-rs/indexmap) | `2.4.0` |
`2.5.0` |
| [object](https://github.com/gimli-rs/object) | `0.36.3` | `0.36.4` |
| [syn](https://github.com/dtolnay/syn) | `2.0.75` | `2.0.77` |
| [thiserror](https://github.com/dtolnay/thiserror) | `1.0.63` |
`1.0.64` |
| [tokio](https://github.com/tokio-rs/tokio) | `1.39.3` | `1.40.0` |
| [unicode-ident](https://github.com/dtolnay/unicode-ident) | `1.0.12` |
`1.0.13` |
| [unicode-width](https://github.com/unicode-rs/unicode-width) |
`0.1.13` | `0.1.14` |
| [unicode-xid](https://github.com/unicode-rs/unicode-xid) | `0.2.5` |
`0.2.6` |


Updates `anyhow` from 1.0.86 to 1.0.89
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/dtolnay/anyhow/releases">anyhow's
releases</a>.</em></p>
<blockquote>
<h2>1.0.89</h2>
<ul>
<li>Make anyhow::Error's <code>UnwindSafe</code> and
<code>RefUnwindSafe</code> impl consistently available between versions
of Rust newer and older than 1.72 (<a
href="https://redirect.github.com/dtolnay/anyhow/issues/386">#386</a>)</li>
</ul>
<h2>1.0.88</h2>
<ul>
<li>Documentation improvements</li>
</ul>
<h2>1.0.87</h2>
<ul>
<li>Support more APIs, including <code>Error::new</code> and
<code>Error::chain</code>, in no-std mode on Rust 1.81+ (<a
href="https://redirect.github.com/dtolnay/anyhow/issues/383">#383</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/dtolnay/anyhow/commit/9d3fb6d0968bd9f95a0d8bbc5269eb2496880510"><code>9d3fb6d</code></a>
Release 1.0.89</li>
<li><a
href="https://github.com/dtolnay/anyhow/commit/830c399126c1db902681130f5c4273d93767b990"><code>830c399</code></a>
Merge pull request <a
href="https://redirect.github.com/dtolnay/anyhow/issues/386">#386</a>
from dtolnay/unwindsafe</li>
<li><a
href="https://github.com/dtolnay/anyhow/commit/8454be372f2a7832436d7021b8f2f0a96db558b3"><code>8454be3</code></a>
Ensure UnwindSafe even with &quot;backtrace&quot; feature enabled and
old Rust</li>
<li><a
href="https://github.com/dtolnay/anyhow/commit/a85e414bf555ed961f59c2c69410e7b5f706df65"><code>a85e414</code></a>
Add more autotraits tests</li>
<li><a
href="https://github.com/dtolnay/anyhow/commit/139f266b903ac2eab462292495f864740446dcdc"><code>139f266</code></a>
Release 1.0.88</li>
<li><a
href="https://github.com/dtolnay/anyhow/commit/aa3ab2b9f0a8cdf4b54dae58d39a2446c5eecbb2"><code>aa3ab2b</code></a>
Merge pull request <a
href="https://redirect.github.com/dtolnay/anyhow/issues/385">#385</a>
from dtolnay/docnostd</li>
<li><a
href="https://github.com/dtolnay/anyhow/commit/44c37674d35a0899fde03ae2fdaeee0bd4c38501"><code>44c3767</code></a>
Update documentation on no-std error type conversions</li>
<li><a
href="https://github.com/dtolnay/anyhow/commit/afe93e7b167d069ac79f2c7f363b919d3793e6ce"><code>afe93e7</code></a>
Release 1.0.87</li>
<li><a
href="https://github.com/dtolnay/anyhow/commit/d58fa4b282c1149bd121419dd359eb8caf2c113d"><code>d58fa4b</code></a>
Fix outdated html_root_url</li>
<li><a
href="https://github.com/dtolnay/anyhow/commit/c18d80743cead05bd75cf2e310e7a00c515facb9"><code>c18d807</code></a>
Disable unused doc_cfg feature</li>
<li>Additional commits viewable in <a
href="https://github.com/dtolnay/anyhow/compare/1.0.86...1.0.89">compare
view</a></li>
</ul>
</details>
<br />

Updates `clap` from 4.5.16 to 4.5.18
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/clap-rs/clap/releases">clap's
releases</a>.</em></p>
<blockquote>
<h2>v4.5.18</h2>
<h2>[4.5.18] - 2024-09-20</h2>
<h3>Features</h3>
<ul>
<li><em>(builder)</em> Expose <code>Arg::get_display_order</code> and
<code>Command::get_display_order</code></li>
</ul>
<h2>v4.5.17</h2>
<h2>[4.5.17] - 2024-09-04</h2>
<h3>Fixes</h3>
<ul>
<li><em>(help)</em> Style required argument groups</li>
<li><em>(derive)</em> Improve error messages when unsupported fields are
used</li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/clap-rs/clap/blob/master/CHANGELOG.md">clap's
changelog</a>.</em></p>
<blockquote>
<h2>[4.5.18] - 2024-09-20</h2>
<h3>Features</h3>
<ul>
<li><em>(builder)</em> Expose <code>Arg::get_display_order</code> and
<code>Command::get_display_order</code></li>
</ul>
<h2>[4.5.17] - 2024-09-04</h2>
<h3>Fixes</h3>
<ul>
<li><em>(help)</em> Style required argument groups</li>
<li><em>(derive)</em> Improve error messages when unsupported fields are
used</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/clap-rs/clap/commit/d81158599f5b3a2434845a1731377eae84780b9a"><code>d811585</code></a>
chore: Release</li>
<li><a
href="https://github.com/clap-rs/clap/commit/ab948b35561b5bc64b50d6a52d799aa5ac5de187"><code>ab948b3</code></a>
docs: Update changelog</li>
<li><a
href="https://github.com/clap-rs/clap/commit/82e599e91d64ddae7231c98a91b4cd39e8c9036d"><code>82e599e</code></a>
Merge pull request <a
href="https://redirect.github.com/clap-rs/clap/issues/5602">#5602</a>
from shannmu/delimiter_values</li>
<li><a
href="https://github.com/clap-rs/clap/commit/59bf26dd56032a7a4e6d923cd37de6e72c33078e"><code>59bf26d</code></a>
feat(clap_complete): Support delimiter values in native completions</li>
<li><a
href="https://github.com/clap-rs/clap/commit/ccecab394b45bc4dd251d00b7d69737ed93d18f8"><code>ccecab3</code></a>
test(clap_complete): Add test cases for delimiter_values support</li>
<li><a
href="https://github.com/clap-rs/clap/commit/a3a476407b01f083dc06200783ad745bc45e5da8"><code>a3a4764</code></a>
docs(derive): Specify Parser::update_from semantics</li>
<li><a
href="https://github.com/clap-rs/clap/commit/df165a2da431138bcc5cd891aec922cbdeda6ded"><code>df165a2</code></a>
docs(derive): Flatten isn't just for update</li>
<li><a
href="https://github.com/clap-rs/clap/commit/5488bcfa30255c59f931f1248e854c0087b2b969"><code>5488bcf</code></a>
docs(derive): Connect more dots for Args/Subcommand</li>
<li><a
href="https://github.com/clap-rs/clap/commit/6013ad4f676dd25c5b5150557a5fb5698c3de020"><code>6013ad4</code></a>
chore: Release</li>
<li><a
href="https://github.com/clap-rs/clap/commit/f98e3ee215015055d776f91217019c33da78c975"><code>f98e3ee</code></a>
docs: Update changelog</li>
<li>Additional commits viewable in <a
href="https://github.com/clap-rs/clap/compare/clap_complete-v4.5.16...clap_complete-v4.5.18">compare
view</a></li>
</ul>
</details>
<br />

Updates `const_format` from 0.2.32 to 0.2.33
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/rodrimati1992/const_format_crates/blob/master/Changelog.md">const_format's
changelog</a>.</em></p>
<blockquote>
<h3>0.2.33</h3>
<p>Fixed Rust Analyzer style warning for assertion macros.</p>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li>See full diff in <a
href="https://github.com/rodrimati1992/const_format_crates/commits">compare
view</a></li>
</ul>
</details>
<br />

Updates `serde` from 1.0.208 to 1.0.210
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/serde-rs/serde/releases">serde's
releases</a>.</em></p>
<blockquote>
<h2>v1.0.210</h2>
<ul>
<li>Support serializing and deserializing <code>IpAddr</code> and
<code>SocketAddr</code> in no-std mode on Rust 1.77+ (<a
href="https://redirect.github.com/serde-rs/serde/issues/2816">#2816</a>,
thanks <a
href="https://github.com/MathiasKoch"><code>@​MathiasKoch</code></a>)</li>
<li>Make <code>serde::ser::StdError</code> and
<code>serde::de::StdError</code> equivalent to
<code>core::error::Error</code> on Rust 1.81+ (<a
href="https://redirect.github.com/serde-rs/serde/issues/2818">#2818</a>)</li>
</ul>
<h2>v1.0.209</h2>
<ul>
<li>Fix deserialization of empty structs and empty tuples inside of
untagged enums (<a
href="https://redirect.github.com/serde-rs/serde/issues/2805">#2805</a>,
thanks <a
href="https://github.com/Mingun"><code>@​Mingun</code></a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/serde-rs/serde/commit/89c4b02bf32ceae5b17d89f93a452ccc195ca038"><code>89c4b02</code></a>
Release 1.0.210</li>
<li><a
href="https://github.com/serde-rs/serde/commit/eeb8e44cda15f929796cd72241b0311e0bd04e67"><code>eeb8e44</code></a>
Merge pull request <a
href="https://redirect.github.com/serde-rs/serde/issues/2818">#2818</a>
from dtolnay/coreerror</li>
<li><a
href="https://github.com/serde-rs/serde/commit/785c2d9605ee73cc172dfd421228c1dccca984c9"><code>785c2d9</code></a>
Stabilize no-std StdError trait</li>
<li><a
href="https://github.com/serde-rs/serde/commit/d549f048e10bcb5e677afaf7b99d0ed3604b113b"><code>d549f04</code></a>
Reformat parse_ip_impl definition and calls</li>
<li><a
href="https://github.com/serde-rs/serde/commit/4c0dd63011434905265e2710bb9186e09e4f8ec2"><code>4c0dd63</code></a>
Delete attr support from core::net deserialization macros</li>
<li><a
href="https://github.com/serde-rs/serde/commit/26fb1341651c4e0ae4d58c675db3ca2a0d6e12c2"><code>26fb134</code></a>
Relocate cfg attrs out of parse_ip_impl and parse_socket_impl</li>
<li><a
href="https://github.com/serde-rs/serde/commit/07e614b52b5ab3387d86d3198e5f52cd1f5ff3cb"><code>07e614b</code></a>
Merge pull request <a
href="https://redirect.github.com/serde-rs/serde/issues/2817">#2817</a>
from dtolnay/corenet</li>
<li><a
href="https://github.com/serde-rs/serde/commit/b1f899fbe81f070803d9f7ca6e5d1cc3f19c9ea2"><code>b1f899f</code></a>
Delete doc(cfg) attribute from impls that are supported in no-std</li>
<li><a
href="https://github.com/serde-rs/serde/commit/b4f860e62767828beb3ef91721b6c56a31f9baad"><code>b4f860e</code></a>
Merge pull request <a
href="https://redirect.github.com/serde-rs/serde/issues/2816">#2816</a>
from MathiasKoch/chore/core-net</li>
<li><a
href="https://github.com/serde-rs/serde/commit/d940fe1b4934f097b0333dcb87bec5ee308d39cd"><code>d940fe1</code></a>
Reuse existing Buf wrapper as replacement for std::io::Write</li>
<li>Additional commits viewable in <a
href="https://github.com/serde-rs/serde/compare/v1.0.208...v1.0.210">compare
view</a></li>
</ul>
</details>
<br />

Updates `serde_json` from 1.0.125 to 1.0.128
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/serde-rs/json/releases">serde_json's
releases</a>.</em></p>
<blockquote>
<h2>1.0.128</h2>
<ul>
<li>Support serializing maps containing 128-bit integer keys to
serde_json::Value (<a
href="https://redirect.github.com/serde-rs/json/issues/1188">#1188</a>,
thanks <a
href="https://github.com/Mrreadiness"><code>@​Mrreadiness</code></a>)</li>
</ul>
<h2>1.0.127</h2>
<ul>
<li>Add more removal methods to OccupiedEntry (<a
href="https://redirect.github.com/serde-rs/json/issues/1179">#1179</a>,
thanks <a
href="https://github.com/GREsau"><code>@​GREsau</code></a>)</li>
</ul>
<h2>1.0.126</h2>
<ul>
<li>Improve string parsing on targets that use 32-bit pointers but also
have fast 64-bit integer arithmetic, such as
aarch64-unknown-linux-gnu_ilp32 and x86_64-unknown-linux-gnux32 (<a
href="https://redirect.github.com/serde-rs/json/issues/1182">#1182</a>,
thanks <a href="https://github.com/CryZe"><code>@​CryZe</code></a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/serde-rs/json/commit/d96b1d9b643b49a0bb92a8cf280daf6aa08f37cc"><code>d96b1d9</code></a>
Release 1.0.128</li>
<li><a
href="https://github.com/serde-rs/json/commit/599228d5dc52a0f1595fe4bd901821f70d0317a5"><code>599228d</code></a>
Merge pull request <a
href="https://redirect.github.com/serde-rs/json/issues/1188">#1188</a>
from Mrreadiness/feat/add-hashmap-key-128-serializer</li>
<li><a
href="https://github.com/serde-rs/json/commit/5416cee6c5ad355907f6e9d5f6039b994c69f768"><code>5416cee</code></a>
feat: add support for 128 bit HashMap key serialization</li>
<li><a
href="https://github.com/serde-rs/json/commit/27a4ca9d7a62394fe8f0103f3d91de59f055a4c4"><code>27a4ca9</code></a>
Upload CI Cargo.lock for reproducing failures</li>
<li><a
href="https://github.com/serde-rs/json/commit/5ebf65cc480f90714c94f82099ca9161d80cbb10"><code>5ebf65c</code></a>
Release 1.0.127</li>
<li><a
href="https://github.com/serde-rs/json/commit/f287a3b1a93ecb1a11cee31cb638bd9523a58add"><code>f287a3b</code></a>
Merge pull request 1179 from GREsau/patch-1</li>
<li><a
href="https://github.com/serde-rs/json/commit/ec980b02774abbff12fd3e26b0a1582eb14dcef7"><code>ec980b0</code></a>
Release 1.0.126</li>
<li><a
href="https://github.com/serde-rs/json/commit/e6282b0c479947805a33c7f167b1d19dd4c7ad4f"><code>e6282b0</code></a>
Merge pull request <a
href="https://redirect.github.com/serde-rs/json/issues/1184">#1184</a>
from serde-rs/fastarithmetic</li>
<li><a
href="https://github.com/serde-rs/json/commit/ffc4a43453029cdc5603cfe3ef08414488fd45de"><code>ffc4a43</code></a>
Improve cfg names for fast arithmetic</li>
<li><a
href="https://github.com/serde-rs/json/commit/4b1048d0ecc4d326d6657531689513f182a4f850"><code>4b1048d</code></a>
Merge pull request <a
href="https://redirect.github.com/serde-rs/json/issues/1183">#1183</a>
from serde-rs/arithmetic</li>
<li>Additional commits viewable in <a
href="https://github.com/serde-rs/json/compare/1.0.125...1.0.128">compare
view</a></li>
</ul>
</details>
<br />

Updates `libc` from 0.2.158 to 0.2.159
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/rust-lang/libc/releases">libc's
releases</a>.</em></p>
<blockquote>
<h2>0.2.159</h2>
<h3>Added</h3>
<ul>
<li>Android: add more <code>AT_*</code> constants in <a
href="https://redirect.github.com/rust-lang/libc/pull/3779">rust-lang/libc#3779</a></li>
<li>Apple: add missing <code>NOTE_*</code> constants in <a
href="https://redirect.github.com/rust-lang/libc/pull/3883">rust-lang/libc#3883</a></li>
<li>Hermit: add missing error numbers in <a
href="https://redirect.github.com/rust-lang/libc/pull/3858">rust-lang/libc#3858</a></li>
<li>Hurd: add <code>__timeval</code> for 64-bit support in <a
href="https://redirect.github.com/rust-lang/libc/pull/3786">rust-lang/libc#3786</a></li>
<li>Linux: add <code>epoll_pwait2</code> in <a
href="https://redirect.github.com/rust-lang/libc/pull/3868">rust-lang/libc#3868</a></li>
<li>Linux: add <code>mq_notify</code> in <a
href="https://redirect.github.com/rust-lang/libc/pull/3849">rust-lang/libc#3849</a></li>
<li>Linux: add missing <code>NFT_CT_*</code> constants in <a
href="https://redirect.github.com/rust-lang/libc/pull/3844">rust-lang/libc#3844</a></li>
<li>Linux: add the <code>fchmodat2</code> syscall in <a
href="https://redirect.github.com/rust-lang/libc/pull/3588">rust-lang/libc#3588</a></li>
<li>Linux: add the <code>mseal</code> syscall in <a
href="https://redirect.github.com/rust-lang/libc/pull/3798">rust-lang/libc#3798</a></li>
<li>OpenBSD: add <code>sendmmsg</code> and <code>recvmmsg</code> in <a
href="https://redirect.github.com/rust-lang/libc/pull/3831">rust-lang/libc#3831</a></li>
<li>Unix: add <code>IN6ADDR_ANY_INIT</code> and
<code>IN6ADDR_LOOPBACK_INIT</code> in <a
href="https://redirect.github.com/rust-lang/libc/pull/3693">rust-lang/libc#3693</a></li>
<li>VxWorks: add <code>S_ISVTX</code> in <a
href="https://redirect.github.com/rust-lang/libc/pull/3768">rust-lang/libc#3768</a></li>
<li>VxWorks: add <code>vxCpuLib</code> and <code>taskLib</code>
functions <a
href="https://redirect.github.com/rust-lang/libc/pull/3861">rust-lang/libc#3861</a></li>
<li>WASIp2: add definitions for <code>std::net</code> support in <a
href="https://redirect.github.com/rust-lang/libc/pull/3892">rust-lang/libc#3892</a></li>
</ul>
<h3>Fixed</h3>
<ul>
<li>Correctly handle version checks when <code>clippy-driver</code> is
used <a
href="https://redirect.github.com/rust-lang/libc/pull/3893">rust-lang/libc#3893</a></li>
</ul>
<h3>Changed</h3>
<ul>
<li>EspIdf: change signal constants to c_int in <a
href="https://redirect.github.com/rust-lang/libc/pull/3895">rust-lang/libc#3895</a></li>
<li>HorizonOS: update network definitions in <a
href="https://redirect.github.com/rust-lang/libc/pull/3863">rust-lang/libc#3863</a></li>
<li>Linux: combine <code>ioctl</code> APIs in <a
href="https://redirect.github.com/rust-lang/libc/pull/3722">rust-lang/libc#3722</a></li>
<li>WASI: enable CI testing in <a
href="https://redirect.github.com/rust-lang/libc/pull/3869">rust-lang/libc#3869</a></li>
<li>WASIp2: enable CI testing in <a
href="https://redirect.github.com/rust-lang/libc/pull/3870">rust-lang/libc#3870</a></li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/rust-lang/libc/blob/0.2.159/CHANGELOG.md">libc's
changelog</a>.</em></p>
<blockquote>
<h2><a
href="https://github.com/rust-lang/libc/compare/0.2.158...0.2.159">0.2.159</a>
- 2024-09-24</h2>
<h3>Added</h3>
<ul>
<li>Android: add more <code>AT_*</code> constants in <a
href="https://redirect.github.com/rust-lang/libc/pull/3779">rust-lang/libc#3779</a></li>
<li>Apple: add missing <code>NOTE_*</code> constants in <a
href="https://redirect.github.com/rust-lang/libc/pull/3883">rust-lang/libc#3883</a></li>
<li>Hermit: add missing error numbers in <a
href="https://redirect.github.com/rust-lang/libc/pull/3858">rust-lang/libc#3858</a></li>
<li>Hurd: add <code>__timeval</code> for 64-bit support in <a
href="https://redirect.github.com/rust-lang/libc/pull/3786">rust-lang/libc#3786</a></li>
<li>Linux: add <code>epoll_pwait2</code> in <a
href="https://redirect.github.com/rust-lang/libc/pull/3868">rust-lang/libc#3868</a></li>
<li>Linux: add <code>mq_notify</code> in <a
href="https://redirect.github.com/rust-lang/libc/pull/3849">rust-lang/libc#3849</a></li>
<li>Linux: add missing <code>NFT_CT_*</code> constants in <a
href="https://redirect.github.com/rust-lang/libc/pull/3844">rust-lang/libc#3844</a></li>
<li>Linux: add the <code>fchmodat2</code> syscall in <a
href="https://redirect.github.com/rust-lang/libc/pull/3588">rust-lang/libc#3588</a></li>
<li>Linux: add the <code>mseal</code> syscall in <a
href="https://redirect.github.com/rust-lang/libc/pull/3798">rust-lang/libc#3798</a></li>
<li>OpenBSD: add <code>sendmmsg</code> and <code>recvmmsg</code> in <a
href="https://redirect.github.com/rust-lang/libc/pull/3831">rust-lang/libc#3831</a></li>
<li>Unix: add <code>IN6ADDR_ANY_INIT</code> and
<code>IN6ADDR_LOOPBACK_INIT</code> in <a
href="https://redirect.github.com/rust-lang/libc/pull/3693">rust-lang/libc#3693</a></li>
<li>VxWorks: add <code>S_ISVTX</code> in <a
href="https://redirect.github.com/rust-lang/libc/pull/3768">rust-lang/libc#3768</a></li>
<li>VxWorks: add <code>vxCpuLib</code> and <code>taskLib</code>
functions <a
href="https://redirect.github.com/rust-lang/libc/pull/3861">rust-lang/libc#3861</a></li>
<li>WASIp2: add definitions for <code>std::net</code> support in <a
href="https://redirect.github.com/rust-lang/libc/pull/3892">rust-lang/libc#3892</a></li>
</ul>
<h3>Fixed</h3>
<ul>
<li>Correctly handle version checks when <code>clippy-driver</code> is
used <a
href="https://redirect.github.com/rust-lang/libc/pull/3893">rust-lang/libc#3893</a></li>
</ul>
<h3>Changed</h3>
<ul>
<li>EspIdf: change signal constants to c_int in <a
href="https://redirect.github.com/rust-lang/libc/pull/3895">rust-lang/libc#3895</a></li>
<li>HorizonOS: update network definitions in <a
href="https://redirect.github.com/rust-lang/libc/pull/3863">rust-lang/libc#3863</a></li>
<li>Linux: combine <code>ioctl</code> APIs in <a
href="https://redirect.github.com/rust-lang/libc/pull/3722">rust-lang/libc#3722</a></li>
<li>WASI: enable CI testing in <a
href="https://redirect.github.com/rust-lang/libc/pull/3869">rust-lang/libc#3869</a></li>
<li>WASIp2: enable CI testing in <a
href="https://redirect.github.com/rust-lang/libc/pull/3870">rust-lang/libc#3870</a></li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/rust-lang/libc/commit/7373a1abe57da20efae9fd2ca891d7b905c19e03"><code>7373a1a</code></a>
chore: release (<a
href="https://redirect.github.com/rust-lang/libc/issues/3862">#3862</a>)</li>
<li><a
href="https://github.com/rust-lang/libc/commit/48668be46be0dbc2d3dfcf942778c37a07d38a87"><code>48668be</code></a>
Merge pull request <a
href="https://redirect.github.com/rust-lang/libc/issues/3931">#3931</a>
from tgross35/backport-remove-tmp-file</li>
<li><a
href="https://github.com/rust-lang/libc/commit/28bb64b1fe678ca090f9af08d786949d53285940"><code>28bb64b</code></a>
Remove temporary file that was added by accident</li>
<li><a
href="https://github.com/rust-lang/libc/commit/a515d07dd95093bc1c3a7b716f0936d2d0b989db"><code>a515d07</code></a>
Merge pull request <a
href="https://redirect.github.com/rust-lang/libc/issues/3904">#3904</a>
from tgross35/backport-buildrs-fix</li>
<li><a
href="https://github.com/rust-lang/libc/commit/abcb8f87986c8f57a28c4f67d7939272f4f8cbad"><code>abcb8f8</code></a>
Simplify the RUSTC_WRAPPER check</li>
<li><a
href="https://github.com/rust-lang/libc/commit/507833559bd0bfe04b5139c1607c3dc3208174f5"><code>5078335</code></a>
Fix rustc version when <code>clippy-driver</code> is used</li>
<li><a
href="https://github.com/rust-lang/libc/commit/57a7d465fa69c85bb96c98c84762ada90ad02077"><code>57a7d46</code></a>
Merge pull request <a
href="https://redirect.github.com/rust-lang/libc/issues/3902">#3902</a>
from tgross35/backport-horizon-network</li>
<li><a
href="https://github.com/rust-lang/libc/commit/a3e88691a9a1a41867b0692b67cc50f5b1d39eb2"><code>a3e8869</code></a>
Revise network definitions for HorizonOS</li>
<li><a
href="https://github.com/rust-lang/libc/commit/fdd3a268960639b4714c2829976b87b374fa0f9f"><code>fdd3a26</code></a>
Merge pull request <a
href="https://redirect.github.com/rust-lang/libc/issues/3900">#3900</a>
from tgross35/espid-cherry-pick</li>
<li><a
href="https://github.com/rust-lang/libc/commit/35060e8eb0bd7a64722fc7ff8ef475f6b15384a9"><code>35060e8</code></a>
Merge pull request <a
href="https://redirect.github.com/rust-lang/libc/issues/3901">#3901</a>
from tgross35/backport-epoll_pwait2</li>
<li>Additional commits viewable in <a
href="https://github.com/rust-lang/libc/compare/0.2.158...0.2.159">compare
view</a></li>
</ul>
</details>
<br />

Updates `is_executable` from 1.0.1 to 1.0.3
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/fitzgen/is_executable/commit/cfe991224073cdab13ff6a8133d1cacd8182e21a"><code>cfe9912</code></a>
Bump to version 1.0.3</li>
<li><a
href="https://github.com/fitzgen/is_executable/commit/d6fcf2f526963b4e12ab063fca255bbe75bca178"><code>d6fcf2f</code></a>
Remove old test about README.md being in sync with module docs</li>
<li><a
href="https://github.com/fitzgen/is_executable/commit/95f27a6d3dae185ee1332728e959e4ff7c6890d9"><code>95f27a6</code></a>
Remove old CI</li>
<li><a
href="https://github.com/fitzgen/is_executable/commit/e70c103b81b5e5e7f25d7973605181cc622f2578"><code>e70c103</code></a>
Update badges in README</li>
<li><a
href="https://github.com/fitzgen/is_executable/commit/61d2e9ba8cf05a1410ca69fd157ca234c65a8af7"><code>61d2e9b</code></a>
Add github actions</li>
<li><a
href="https://github.com/fitzgen/is_executable/commit/001b334761623dcc0182dded9f1e3b949f7cf79a"><code>001b334</code></a>
Bump to version 1.0.2</li>
<li><a
href="https://github.com/fitzgen/is_executable/commit/fab168c19690b6247f9e983fd0e0d0d8599c3bef"><code>fab168c</code></a>
Merge pull request <a
href="https://redirect.github.com/fitzgen/is_executable/issues/14">#14</a>
from lucieleblanc/master</li>
<li><a
href="https://github.com/fitzgen/is_executable/commit/82f9c68782656eb9ec2fcad978fce3c9e60a3072"><code>82f9c68</code></a>
replace is_file() --&gt; exists() because symlinks are ok</li>
<li><a
href="https://github.com/fitzgen/is_executable/commit/441c1c7df30116f3a4a1b8a999e457816d77cf7a"><code>441c1c7</code></a>
add file existence check before reading extension</li>
<li><a
href="https://github.com/fitzgen/is_executable/commit/ea10f6b2f8456bdcc5300027c5605ff6089b371c"><code>ea10f6b</code></a>
Merge pull request <a
href="https://redirect.github.com/fitzgen/is_executable/issues/11">#11</a>
from davide125/exclude</li>
<li>Additional commits viewable in <a
href="https://github.com/fitzgen/is_executable/compare/v1.0.1...v1.0.3">compare
view</a></li>
</ul>
</details>
<br />

Updates `derive-new` from 0.6.0 to 0.7.0
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/nrc/derive-new/commit/6626d8f566ee523ead38fe789b171f1b46993e49"><code>6626d8f</code></a>
Update compiletest</li>
<li><a
href="https://github.com/nrc/derive-new/commit/1e024ddf396e06690c0b39baa5a4f996ae88404b"><code>1e024dd</code></a>
cargo update, etc.</li>
<li><a
href="https://github.com/nrc/derive-new/commit/3389ef278665f8e0be249b6f4bd3cbfc727160a8"><code>3389ef2</code></a>
Fix doc tests</li>
<li><a
href="https://github.com/nrc/derive-new/commit/bd4486d85de87d5a543a7604f4e8f136c8b0e973"><code>bd4486d</code></a>
implement <code>into</code> and <code>into_iter</code></li>
<li><a
href="https://github.com/nrc/derive-new/commit/a9230ace30ffc43836e0e49e42e1203c7f079732"><code>a9230ac</code></a>
fix tests</li>
<li><a
href="https://github.com/nrc/derive-new/commit/77cb8287d22ca3aff803577a49321886895a43ee"><code>77cb828</code></a>
Merge pull request <a
href="https://redirect.github.com/nrc/derive-new/issues/67">#67</a> from
Paragit-Solutions/implement-new-method-visibility</li>
<li><a
href="https://github.com/nrc/derive-new/commit/cacbadabd235a83e978fcd52d9ed83dffff43abd"><code>cacbada</code></a>
Merge pull request <a
href="https://redirect.github.com/nrc/derive-new/issues/66">#66</a> from
shellixyz/patch-1</li>
<li><a
href="https://github.com/nrc/derive-new/commit/d11f63160c0829dbf06a1aab30f431c9b58ecc37"><code>d11f631</code></a>
Add documentation</li>
<li><a
href="https://github.com/nrc/derive-new/commit/3311408f8fc4844e857708bf2a222c939ac1066d"><code>3311408</code></a>
Add visibility to test struct to test compilation and correct macro
expansion</li>
<li><a
href="https://github.com/nrc/derive-new/commit/61853b79702bae6d0ffa343718310f20463687a4"><code>61853b7</code></a>
Make the default visibility public</li>
<li>Additional commits viewable in <a
href="https://github.com/nrc/derive-new/compare/0.6.0...0.7">compare
view</a></li>
</ul>
</details>
<br />

Updates `async-trait` from 0.1.81 to 0.1.83
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/dtolnay/async-trait/releases">async-trait's
releases</a>.</em></p>
<blockquote>
<h2>0.1.83</h2>
<ul>
<li>Prevent needless_arbitrary_self_type lint being produced in
generated code (<a
href="https://redirect.github.com/dtolnay/async-trait/issues/278">#278</a>)</li>
</ul>
<h2>0.1.82</h2>
<ul>
<li>Prevent elided_named_lifetimes lint being produced in generated code
(<a
href="https://redirect.github.com/dtolnay/async-trait/issues/276">#276</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/dtolnay/async-trait/commit/e6b4d471c64156338fb87386b7a7ad8543c3a205"><code>e6b4d47</code></a>
Release 0.1.83</li>
<li><a
href="https://github.com/dtolnay/async-trait/commit/bfe8d617660237b27eee620181586a16ff2f6a25"><code>bfe8d61</code></a>
Merge pull request <a
href="https://redirect.github.com/dtolnay/async-trait/issues/278">#278</a>
from dtolnay/arbself</li>
<li><a
href="https://github.com/dtolnay/async-trait/commit/7bd974b3a4db2c3ab321de2976d09d3ea2b82348"><code>7bd974b</code></a>
Ignore needless_arbitrary_self_type clippy lint in generated code</li>
<li><a
href="https://github.com/dtolnay/async-trait/commit/b53b4e755402ef91d2104d40b8f303ad0c56d2f9"><code>b53b4e7</code></a>
Add regression test for issue 277</li>
<li><a
href="https://github.com/dtolnay/async-trait/commit/f8e5bb43181450a17068f160e8a51d410ede1705"><code>f8e5bb4</code></a>
Release 0.1.82</li>
<li><a
href="https://github.com/dtolnay/async-trait/commit/8fbf118de30d3d30416d5a2dff496513433171c4"><code>8fbf118</code></a>
Merge pull request <a
href="https://redirect.github.com/dtolnay/async-trait/issues/276">#276</a>
from dtolnay/elidednamed</li>
<li><a
href="https://github.com/dtolnay/async-trait/commit/6fa246a0546fc678c4812ccb59306b6b264c27a0"><code>6fa246a</code></a>
Ignore nightly's new elided_named_lifetimes lint in generated code</li>
<li><a
href="https://github.com/dtolnay/async-trait/commit/d542a0dd74f366995e5924edc2d6ac7661e5d9ca"><code>d542a0d</code></a>
Upload CI Cargo.lock for reproducing failures</li>
<li><a
href="https://github.com/dtolnay/async-trait/commit/8828c35a86442dd05b6ac3aab5f0bac769e246f0"><code>8828c35</code></a>
Sort dependency features in Cargo.toml</li>
<li><a
href="https://github.com/dtolnay/async-trait/commit/ba9793af3f3936e2373ab4c482bf49ac67009df8"><code>ba9793a</code></a>
Update ui test suite to nightly-2024-08-11</li>
<li>Additional commits viewable in <a
href="https://github.com/dtolnay/async-trait/compare/0.1.81...0.1.83">compare
view</a></li>
</ul>
</details>
<br />

Updates `autocfg` from 1.3.0 to 1.4.0
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/cuviper/autocfg/commit/d07df6624a4573803a29397c0ccf636aa0b3d153"><code>d07df66</code></a>
Merge pull request <a
href="https://redirect.github.com/cuviper/autocfg/issues/73">#73</a>
from cuviper/release-1.4.0</li>
<li><a
href="https://github.com/cuviper/autocfg/commit/f6066f016441c2a25e0fa0d9d0521b1a79b0e14c"><code>f6066f0</code></a>
Release 1.4.0</li>
<li><a
href="https://github.com/cuviper/autocfg/commit/8af60eca650aed24db3042dbd0a2e1f61016b95e"><code>8af60ec</code></a>
Merge pull request <a
href="https://redirect.github.com/cuviper/autocfg/issues/70">#70</a>
from Techcable/feature/rustc-check-cfg</li>
<li><a
href="https://github.com/cuviper/autocfg/commit/52a995b6723ae015fbed7312d56803492f01e10a"><code>52a995b</code></a>
Apply suggestions from code review</li>
<li><a
href="https://github.com/cuviper/autocfg/commit/a8703c163f5aa66819f515356530420955374386"><code>a8703c1</code></a>
Attempt rust 1.0 compat for ci/verify-check-cfg</li>
<li><a
href="https://github.com/cuviper/autocfg/commit/ac78be804dbcf9e616d69a93c0ba918adc6a003a"><code>ac78be8</code></a>
Add ci test crate for check-cfg</li>
<li><a
href="https://github.com/cuviper/autocfg/commit/0b4a7617ad0e6ccf271dac7ab920a731195fab32"><code>0b4a761</code></a>
Have emit_has methods delegate wherever possible</li>
<li><a
href="https://github.com/cuviper/autocfg/commit/546f7c6c1c0e25b2dca136675934348118f603d2"><code>546f7c6</code></a>
Fix minor doc issues</li>
<li><a
href="https://github.com/cuviper/autocfg/commit/e0e0f18f54fb60f9c42a01c6571edcdab4542db6"><code>e0e0f18</code></a>
Automatically emit <code>rustc-check-cfg</code> directives for
AutoCfg</li>
<li><a
href="https://github.com/cuviper/autocfg/commit/1953a17319e667dd2ead9a4eae0645ed939eef24"><code>1953a17</code></a>
Merge pull request <a
href="https://redirect.github.com/cuviper/autocfg/issues/72">#72</a>
from cuviper/pretty-way</li>
<li>Additional commits viewable in <a
href="https://github.com/cuviper/autocfg/compare/1.3.0...1.4.0">compare
view</a></li>
</ul>
</details>
<br />

Updates `backtrace` from 0.3.73 to 0.3.74
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/rust-lang/backtrace-rs/releases">backtrace's
releases</a>.</em></p>
<blockquote>
<h2>0.3.74</h2>
<h2>What's Changed</h2>
<ul>
<li>QNX Neutrino 7.0 support, thanks to <a
href="https://github.com/nyurik"><code>@​nyurik</code></a> in <a
href="https://redirect.github.com/rust-lang/backtrace-rs/pull/648">rust-lang/backtrace-rs#648</a></li>
<li>Cleaned up our Android support. This should massively improve
backtraces for ones with the API level sufficient to ship with
libunwind, etc. Unfortunately, it comes at the cost of dropping support
for older ones! Thanks to <a
href="https://github.com/fengys"><code>@​fengys</code></a> in <a
href="https://redirect.github.com/rust-lang/backtrace-rs/pull/656">rust-lang/backtrace-rs#656</a></li>
<li>Made PrintFmt, which was using the
<code>Enum::__NonExhaustiveVariant</code> pattern, use
<code>#[non_exhaustive]</code> for real. Don't @ me if you were matching
on that! Thanks to <a
href="https://github.com/nyurik"><code>@​nyurik</code></a> in <a
href="https://redirect.github.com/rust-lang/backtrace-rs/pull/651">rust-lang/backtrace-rs#651</a></li>
<li>Massively cleaned up the windows code! We moved from winapi to
windows-sys with windows-targets thanks to <a
href="https://github.com/CraftSpider"><code>@​CraftSpider</code></a> and
<a href="https://github.com/ChrisDenton"><code>@​ChrisDenton</code></a>
in
<ul>
<li>Don't cast HANDLE to usize and back by <a
href="https://github.com/CraftSpider"><code>@​CraftSpider</code></a> in
<a
href="https://redirect.github.com/rust-lang/backtrace-rs/pull/635">rust-lang/backtrace-rs#635</a></li>
<li>Switch from <code>winapi</code> to <code>windows-sys</code> by <a
href="https://github.com/CraftSpider"><code>@​CraftSpider</code></a> in
<a
href="https://redirect.github.com/rust-lang/backtrace-rs/pull/641">rust-lang/backtrace-rs#641</a></li>
<li>Update windows bindings and use windows-targets by <a
href="https://github.com/ChrisDenton"><code>@​ChrisDenton</code></a> in
<a
href="https://redirect.github.com/rust-lang/backtrace-rs/pull/653">rust-lang/backtrace-rs#653</a></li>
</ul>
</li>
<li>A bunch of updated dependencies. Thanks <a
href="https://github.com/djc"><code>@​djc</code></a> and <a
href="https://github.com/khuey"><code>@​khuey</code></a>!</li>
<li>Sorry if you were testing this code in miri! It started yelling
about sussy casts. A lot. We did a bunch of internal cleanups that
should make it quiet down, thanks to <a
href="https://github.com/workingjubilee"><code>@​workingjubilee</code></a>
in <a
href="https://redirect.github.com/rust-lang/backtrace-rs/pull/641">rust-lang/backtrace-rs#641</a></li>
<li>Uhhh we had to tweak <code>dl_iterate_phdr</code> in <a
href="https://redirect.github.com/rust-lang/backtrace-rs/pull/660">rust-lang/backtrace-rs#660</a>
after Android revealed it was... kind of unsound actually and not doing
things like checking for null pointers before making slices! WHOOPS!
Thanks to <a
href="https://github.com/saethlin"><code>@​saethlin</code></a> for
implementing detection for precisely that in rustc! It's really hard to
find soundness issues in inherited codebases like this one...</li>
</ul>
<h2>New Contributors</h2>
<ul>
<li><a
href="https://github.com/CraftSpider"><code>@​CraftSpider</code></a>
made their first contribution in <a
href="https://redirect.github.com/rust-lang/backtrace-rs/pull/635">rust-lang/backtrace-rs#635</a></li>
<li><a
href="https://github.com/fengys1996"><code>@​fengys1996</code></a> made
their first contribution in <a
href="https://redirect.github.com/rust-lang/backtrace-rs/pull/656">rust-lang/backtrace-rs#656</a></li>
<li><a href="https://github.com/djc"><code>@​djc</code></a> made their
first contribution in <a
href="https://redirect.github.com/rust-lang/backtrace-rs/pull/657">rust-lang/backtrace-rs#657</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/rust-lang/backtrace-rs/compare/0.3.73...0.3.74">https://github.com/rust-lang/backtrace-rs/compare/0.3.73...0.3.74</a></p>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/rust-lang/backtrace-rs/commit/38d49aa0395c50047ab26e418a0cb30d9955fb64"><code>38d49aa</code></a>
Merge pull request <a
href="https://redirect.github.com/rust-lang/backtrace-rs/issues/658">#658</a>
from workingjubilee/cut-0.3.74</li>
<li><a
href="https://github.com/rust-lang/backtrace-rs/commit/c1749ce9a8cc0105b9d224e66f9ce4632133c1ea"><code>c1749ce</code></a>
Cut backtrace 0.3.74</li>
<li><a
href="https://github.com/rust-lang/backtrace-rs/commit/230570f2dac80a601f5c0b30da00cc9480bd35eb"><code>230570f</code></a>
Merge pull request <a
href="https://redirect.github.com/rust-lang/backtrace-rs/issues/660">#660</a>
from workingjubilee/dont-unsoundly-iterate-phdr</li>
<li><a
href="https://github.com/rust-lang/backtrace-rs/commit/153f510013e9d486103dac7994d7f75205af397a"><code>153f510</code></a>
Do not destructure maybe-uninit fields</li>
<li><a
href="https://github.com/rust-lang/backtrace-rs/commit/38589464ed3a901794f5858ccbd7f996f6712f64"><code>3858946</code></a>
Revise dl_iterate_phdr callback to be sound-ish</li>
<li><a
href="https://github.com/rust-lang/backtrace-rs/commit/7d062c63749a4c07d9307c96b6cd9485ccd1ad18"><code>7d062c6</code></a><code>rust-lang/backtrace-rs#653</code></li>
<li><a
href="https://github.com/rust-lang/backtrace-rs/commit/fc37b22dc8a384d93f6b7b4817266eec6433875e"><code>fc37b22</code></a><code>rust-lang/backtrace-rs#657</code></li>
<li><a
href="https://github.com/rust-lang/backtrace-rs/commit/600beaa5074be0f40279584450d995c319061ce8"><code>600beaa</code></a><code>rust-lang/backtrace-rs#648</code></li>
<li><a
href="https://github.com/rust-lang/backtrace-rs/commit/84b6c1d56f4bd1b4297187db863c2db6d436c1cf"><code>84b6c1d</code></a><code>rust-lang/backtrace-rs#652</code></li>
<li><a
href="https://github.com/rust-lang/backtrace-rs/commit/95c3bacab9364620864208b651e77a524900480d"><code>95c3bac</code></a>
Make enum
<code>print::PrintFmt</code><code>rust-lang/backtrace-rs#651</code></li>
<li>Additional commits viewable in <a
href="https://github.com/rust-lang/backtrace-rs/compare/0.3.73...0.3.74">compare
view</a></li>
</ul>
</details>
<br />

Updates `bytes` from 1.7.1 to 1.7.2
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/tokio-rs/bytes/releases">bytes's
releases</a>.</em></p>
<blockquote>
<h2>Bytes 1.7.2</h2>
<h1>1.7.2 (September 17, 2024)</h1>
<h3>Fixed</h3>
<ul>
<li>Fix default impl of <code>Buf::{get_int, get_int_le}</code> (<a
href="https://redirect.github.com/tokio-rs/bytes/issues/732">#732</a>)</li>
</ul>
<h3>Documented</h3>
<ul>
<li>Fix double spaces in comments and doc comments (<a
href="https://redirect.github.com/tokio-rs/bytes/issues/731">#731</a>)</li>
</ul>
<h3>Internal changes</h3>
<ul>
<li>Ensure BytesMut::advance reduces capacity (<a
href="https://redirect.github.com/tokio-rs/bytes/issues/728">#728</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/tokio-rs/bytes/blob/master/CHANGELOG.md">bytes's
changelog</a>.</em></p>
<blockquote>
<h1>1.7.2 (September 17, 2024)</h1>
<h3>Fixed</h3>
<ul>
<li>Fix default impl of <code>Buf::{get_int, get_int_le}</code> (<a
href="https://redirect.github.com/tokio-rs/bytes/issues/732">#732</a>)</li>
</ul>
<h3>Documented</h3>
<ul>
<li>Fix double spaces in comments and doc comments (<a
href="https://redirect.github.com/tokio-rs/bytes/issues/731">#731</a>)</li>
</ul>
<h3>Internal changes</h3>
<ul>
<li>Ensure BytesMut::advance reduces capacity (<a
href="https://redirect.github.com/tokio-rs/bytes/issues/728">#728</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/tokio-rs/bytes/commit/d7c1d658d90c922eeee1dbc29bc6f6fd9a1a1a66"><code>d7c1d65</code></a>
chore: prepare bytes v1.7.2 (<a
href="https://redirect.github.com/tokio-rs/bytes/issues/736">#736</a>)</li>
<li><a
href="https://github.com/tokio-rs/bytes/commit/ac46ebdd464144cecd7463a96ca9eb347458ae94"><code>ac46ebd</code></a>
ci: update nightly to nightly-2024-09-15 (<a
href="https://redirect.github.com/tokio-rs/bytes/issues/734">#734</a>)</li>
<li><a
href="https://github.com/tokio-rs/bytes/commit/79fb85323cf4cf14d9b85f487b65fc147030cf4b"><code>79fb853</code></a>
fix: apply sign extension when decoding int (<a
href="https://redirect.github.com/tokio-rs/bytes/issues/732">#732</a>)</li>
<li><a
href="https://github.com/tokio-rs/bytes/commit/291df5acc94b82a48765e67eeb1c1a2074539e68"><code>291df5a</code></a>
Fix double spaces in comments and doc comments (<a
href="https://redirect.github.com/tokio-rs/bytes/issues/731">#731</a>)</li>
<li><a
href="https://github.com/tokio-rs/bytes/commit/ed7d5ff39e39c2802c0fa9e2fc308f6a3e0beda7"><code>ed7d5ff</code></a>
test: ensure BytesMut::advance reduces capacity (<a
href="https://redirect.github.com/tokio-rs/bytes/issues/728">#728</a>)</li>
<li>See full diff in <a
href="https://github.com/tokio-rs/bytes/compare/v1.7.1...v1.7.2">compare
view</a></li>
</ul>
</details>
<br />

Updates `cc` from 1.1.14 to 1.1.22
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/rust-lang/cc-rs/releases">cc's
releases</a>.</em></p>
<blockquote>
<h2>cc-v1.1.22</h2>
<h3>Other</h3>
<ul>
<li>Don't rerun if PATH changes (<a
href="https://redirect.github.com/rust-lang/cc-rs/pull/1215">#1215</a>)</li>
</ul>
<h2>cc-v1.1.21</h2>
<h3>Other</h3>
<ul>
<li>disable pic for targets that end in <code>-none</code> (<a
href="https://redirect.github.com/rust-lang/cc-rs/pull/1212">#1212</a>)</li>
</ul>
<h2>cc-v1.1.20</h2>
<h3>Other</h3>
<ul>
<li>Add buildcache as known Rust and C/C++ compiler wrapper (<a
href="https://redirect.github.com/rust-lang/cc-rs/pull/1209">#1209</a>)</li>
</ul>
<h2>cc-v1.1.19</h2>
<h3>Other</h3>
<ul>
<li>Add support arm64e-apple-darwin (<a
href="https://redirect.github.com/rust-lang/cc-rs/pull/1207">#1207</a>)</li>
</ul>
<h2>cc-v1.1.18</h2>
<h3>Other</h3>
<ul>
<li>Fixed unsoundness in <code>StderrForwarder::forward_available</code>
(<a
href="https://redirect.github.com/rust-lang/cc-rs/pull/1203">#1203</a>)</li>
</ul>
<h2>cc-v1.1.17</h2>
<h3>Fixed</h3>
<ul>
<li>fix finding toolchains when invoked by msbuild (<a
href="https://redirect.github.com/rust-lang/cc-rs/pull/1201">#1201</a>)</li>
</ul>
<h2>cc-v1.1.16</h2>
<h3>Other</h3>
<ul>
<li>Treat VxWorks wr-cc as a Gnu compiler (<a
href="https://redirect.github.com/rust-lang/cc-rs/pull/1198">#1198</a>)</li>
</ul>
<h2>cc-v1.1.15</h2>
<h3>Other</h3>
<ul>
<li>Add -mfloat-abi=hard as a default argument when using any
arm/thumb-none-eabihf target (<a
href="https://redirect.github.com/rust-lang/cc-rs/pull/1194">#1194</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/rust-lang/cc-rs/blob/main/CHANGELOG.md">cc's
changelog</a>.</em></p>
<blockquote>
<h2><a
href="https://github.com/rust-lang/cc-rs/compare/cc-v1.1.21...cc-v1.1.22">1.1.22</a>
- 2024-09-27</h2>
<h3>Other</h3>
<ul>
<li>Don't rerun if PATH changes (<a
href="https://redirect.github.com/rust-lang/cc-rs/pull/1215">#1215</a>)</li>
</ul>
<h2><a
href="https://github.com/rust-lang/cc-rs/compare/cc-v1.1.20...cc-v1.1.21">1.1.21</a>
- 2024-09-18</h2>
<h3>Other</h3>
<ul>
<li>disable pic for targets that end in <code>-none</code> (<a
href="https://redirect.github.com/rust-lang/cc-rs/pull/1212">#1212</a>)</li>
</ul>
<h2><a
href="https://github.com/rust-lang/cc-rs/compare/cc-v1.1.19...cc-v1.1.20">1.1.20</a>
- 2024-09-17</h2>
<h3>Other</h3>
<ul>
<li>Add buildcache as known Rust and C/C++ compiler wrapper (<a
href="https://redirect.github.com/rust-lang/cc-rs/pull/1209">#1209</a>)</li>
</ul>
<h2><a
href="https://github.com/rust-lang/cc-rs/compare/cc-v1.1.18...cc-v1.1.19">1.1.19</a>
- 2024-09-15</h2>
<h3>Other</h3>
<ul>
<li>Add support arm64e-apple-darwin (<a
href="https://redirect.github.com/rust-lang/cc-rs/pull/1207">#1207</a>)</li>
</ul>
<h2><a
href="https://github.com/rust-lang/cc-rs/compare/cc-v1.1.17...cc-v1.1.18">1.1.18</a>
- 2024-09-07</h2>
<h3>Other</h3>
<ul>
<li>Fixed unsoundness in <code>StderrForwarder::forward_available</code>
(<a
href="https://redirect.github.com/rust-lang/cc-rs/pull/1203">#1203</a>)</li>
</ul>
<h2><a
href="https://github.com/rust-lang/cc-rs/compare/cc-v1.1.16...cc-v1.1.17">1.1.17</a>
- 2024-09-06</h2>
<h3>Fixed</h3>
<ul>
<li>fix finding toolchains when invoked by msbuild (<a
href="https://redirect.github.com/rust-lang/cc-rs/pull/1201">#1201</a>)</li>
</ul>
<h2><a
href="https://github.com/rust-lang/cc-rs/compare/cc-v1.1.15...cc-v1.1.16">1.1.16</a>
- 2024-09-04</h2>
<h3>Other</h3>
<ul>
<li>Treat VxWorks wr-cc as a Gnu compiler (<a
href="https://redirect.github.com/rust-lang/cc-rs/pull/1198">#1198</a>)</li>
</ul>
<h2><a
href="https://github.com/rust-lang/cc-rs/compare/cc-v1.1.14...cc-v1.1.15">1.1.15</a>
- 2024-08-26</h2>
<h3>Other</h3>
<ul>
<li>Add -mfloat-abi=hard as a default argument when using any
arm/thumb-none-eabihf target (<a
href="https://redirect.github.com/rust-lang/cc-rs/pull/1194">#1194</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/rust-lang/cc-rs/commit/5f5e1c8c18b53aa1524f720ce21b5a7986a0bf6b"><code>5f5e1c8</code></a>
chore: release (<a
href="https://redirect.github.com/rust-lang/cc-rs/issues/1216">#1216</a>)</li>
<li><a
href="https://github.com/rust-lang/cc-rs/commit/71c672b4afa2f9b6e5046a963d3b5bc1f9ccd2f8"><code>71c672b</code></a>
Don't rerun if PATH changes (<a
href="https://redirect.github.com/rust-lang/cc-rs/issues/1215">#1215</a>)</li>
<li><a
href="https://github.com/rust-lang/cc-rs/commit/748b777e553af972fb0484ece2626beaa354e0a2"><code>748b777</code></a>
chore: release (<a
href="https://redirect.github.com/rust-lang/cc-rs/issues/1213">#1213</a>)</li>
<li><a
href="https://github.com/rust-lang/cc-rs/commit/270ec653371a12498c3a338fb8b4a5d35e8388c6"><code>270ec65</code></a>
disable pic for targets that end in <code>-none</code> (<a
href="https://redirect.github.com/rust-lang/cc-rs/issues/1212">#1212</a>)</li>
<li><a
href="https://github.com/rust-lang/cc-rs/commit/92a5e28c084aefc101d2f71f236614d9fcaa1f9e"><code>92a5e28</code></a>
chore: release (<a
href="https://redirect.github.com/rust-lang/cc-rs/issues/1210">#1210</a>)</li>
<li><a
href="https://github.com/rust-lang/cc-rs/commit/dab5d7adb4c090ac9d8650e7d97897a711ac7a14"><code>dab5d7a</code></a>
Add buildcache as known Rust and C/C++ compiler wrapper (<a
href="https://redirect.github.com/rust-lang/cc-rs/issues/1209">#1209</a>)</li>
<li><a
href="https://github.com/rust-lang/cc-rs/commit/c0b3eae28300fc8b36eb3a0b519ef4083f1a129e"><code>c0b3eae</code></a>
chore: release (<a
href="https://redirect.github.com/rust-lang/cc-rs/issues/1208">#1208</a>)</li>
<li><a
href="https://github.com/rust-lang/cc-rs/commit/278a606afb79b00cfe7a1372dbaa3529ecce3dc4"><code>278a606</code></a>
Add support arm64e-apple-darwin (<a
href="https://redirect.github.com/rust-lang/cc-rs/issues/1207">#1207</a>)</li>
<li><a
href="https://github.com/rust-lang/cc-rs/commit/668facdbbcade9ebfb48c8ea0b658fc2688c4e5c"><code>668facd</code></a>
chore: release (<a
href="https://redirect.github.com/rust-lang/cc-rs/issues/1204">#1204</a>)</li>
<li><a
href="https://github.com/rust-lang/cc-rs/commit/5e161c6f4452fe63985bdfc78462ceda94c99805"><code>5e161c6</code></a>
Fixed unsoundness in <code>StderrForwarder::forward_available</code> (<a
href="https://redirect.github.com/rust-lang/cc-rs/issues/1203">#1203</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/rust-lang/cc-rs/compare/cc-v1.1.14...cc-v1.1.22">compare
view</a></li>
</ul>
</details>
<br />

Updates `clap_builder` from 4.5.15 to 4.5.18
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/clap-rs/clap/releases">clap_builder's
releases</a>.</em></p>
<blockquote>
<h2>v4.5.18</h2>
<h2>[4.5.18] - 2024-09-20</h2>
<h3>Features</h3>
<ul>
<li><em>(builder)</em> Expose <code>Arg::get_display_order</code> and
<code>Command::get_display_order</code></li>
</ul>
<h2>v4.5.17</h2>
<h2>[4.5.17] - 2024-09-04</h2>
<h3>Fixes</h3>
<ul>
<li><em>(help)</em> Style required argument groups</li>
<li><em>(derive)</em> Improve error messages when unsupported fields are
used</li>
</ul>
<h2>v4.5.16</h2>
<h2>[4.5.16] - 2024-08-15</h2>
<h3>Fixes</h3>
<ul>
<li><em>(derive)</em> Improve error messages when <code>derive</code>
feature is missing</li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/clap-rs/clap/blob/master/CHANGELOG.md">clap_builder's
changelog</a>.</em></p>
<blockquote>
<h2>[4.5.18] - 2024-09-20</h2>
<h3>Features</h3>
<ul>
<li><em>(builder)</em> Expose <code>Arg::get_display_order</code> and
<code>Command::get_display_order</code></li>
</ul>
<h2>[4.5.17] - 2024-09-04</h2>
<h3>Fixes</h3>
<ul>
<li><em>(help)</em> Style required argument groups</li>
<li><em>(derive)</em> Improve error messages when unsupported fields are
used</li>
</ul>
<h2>[4.5.16] - 2024-08-15</h2>
<h3>Fixes</h3>
<ul>
<li><em>(derive)</em> Improve error messages when <code>derive</code>
feature is missing</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/clap-rs/clap/commit/0d142f6c04a702b791d2dfec8327661ba1b6d16c"><code>0d142f6</code></a>
chore: Release</li>
<li><a
href="https://github.com/clap-rs/clap/commit/0facf1f370e7966a4d97bce56d1d10ca4c80d0ae"><code>0facf1f</code></a>
docs: Update changelog</li>
<li><a
href="https://github.com/clap-rs/clap/commit/ee6af99c6c5e239c0f2c92f9d1baf8aa3bb4af90"><code>ee6af99</code></a>
Merge pull request <a
href="https://redirect.github.com/clap-rs/clap/issues/5743">#5743</a>
from epage/sort</li>
<li><a
href="https://github.com/clap-rs/clap/commit/232ee106615e997f0841bb3de97eed126b929fe3"><code>232ee10</code></a>
fix(complete): Use existing display order for Arg/Command</li>
<li><a
href="https://github.com/clap-rs/clap/commit/c6b5d627a0c17527630e4086a4fe83589365d1f0"><code>c6b5d62</code></a>
feat(builder): Expose get_display_order</li>
<li><a
href="https://github.com/clap-rs/clap/commit/67d9fef9cee8f1b297aed73e6d95f78744b43a27"><code>67d9fef</code></a>
feat(complete): Give control over display order</li>
<li><a
href="https://github.com/clap-rs/clap/commit/59a61e188fbb9999db52f567e3951d3720204084"><code>59a61e1</code></a>
refactor(complete): Pull out common candidate code</li>
<li><a
href="https://github.com/clap-rs/clap/commit/144879194081212046d5566572bfa15ea9bcca35"><code>1448791</code></a>
fix(complete): Specify tags for built-in candiates</li>
<li><a
href="https://github.com/clap-rs/clap/commit/a4aa5dffdf46a2975f2b2d51ce7e618e19250ead"><code>a4aa5df</code></a>
feat(complete): Group by tag</li>
<li><a
href="https://github.com/clap-rs/clap/commit/a126149a809f01586ccb6d9299eb2fc2c87d8fe0"><code>a126149</code></a>
refactor(complete): Remove redundant dedup</li>
<li>Additional commits viewable in <a
href="https://github.com/clap-rs/clap/compare/v4.5.15...v4.5.18">compare
view</a></li>
</ul>
</details>
<br />

Updates `clap_derive` from 4.5.13 to 4.5.18
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/clap-rs/clap/releases">clap_derive's
releases</a>.</em></p>
<blockquote>
<h2>v4.5.18</h2>
<h2>[4.5.18] - 2024-09-20</h2>
<h3>Features</h3>
<ul>
<li><em>(builder)</em> Expose <code>Arg::get_display_order</code> and
<code>Command::get_display_order</code></li>
</ul>
<h2>v4.5.17</h2>
<h2>[4.5.17] - 2024-09-04</h2>
<h3>Fixes</h3>
<ul>
<li><em>(help)</em> Style required argument groups</li>
<li><em>(derive)</em> Improve error messages when unsupported fields are
used</li>
</ul>
<h2>v4.5.16</h2>
<h2>[4.5.16] - 2024-08-15</h2>
<h3>Fixes</h3>
<ul>
<li><em>(derive)</em> Improve error messages when <code>derive</code>
feature is missing</li>
</ul>
<h2>v4.5.15</h2>
<h2>[4.5.15] - 2024-08-10</h2>
<h3>Compatiblity</h3>
<ul>
<li><em>(unstable-ext)</em> <code>Arg::remove</code> changed return
types</li>
</ul>
<h3>Fixes</h3>
<ul>
<li><em>(unstable-ext)</em> Make <code>Arg::remove</code> return the
removed item</li>
</ul>
<h2>v4.5.14</h2>
<h2>[4.5.14] - 2024-08-08</h2>
<h3>Features</h3>
<ul>
<li><em>(unstable-ext)</em> Added <code>Arg::add</code> for attaching
arbitrary state, like completion hints, to <code>Arg</code> without
<code>Arg</code> knowing about it</li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/clap-rs/clap/blob/master/CHANGELOG.md">clap_derive's
changelog</a>.</em></p>
<blockquote>
<h2>[4.5.18] - 2024-09-20</h2>
<h3>Features</h3>
<ul>
<li><em>(builder)</em> Expose <code>Arg::get_display_order</code> and
<code>Command::get_display_order</code></li>
</ul>
<h2>[4.5.17] - 2024-09-04</h2>
<h3>Fixes</h3>
<ul>
<li><em>(help)</em> Style required argument groups</li>
<li><em>(derive)</em> Improve error messages when unsupported fields are
used</li>
</ul>
<h2>[4.5.16] - 2024-08-15</h2>
<h3>Fixes</h3>
<ul>
<li><em>(derive)</em> Improve error messages when <code>derive</code>
feature is missing</li>
</ul>
<h2>[4.5.15] - 2024-08-10</h2>
<h3>Compatiblity</h3>
<ul>
<li><em>(unstable-ext)</em> <code>Arg::remove</code> changed return
types</li>
</ul>
<h3>Fixes</h3>
<ul>
<li><em>(unstable-ext)</em> Make <code>Arg::remove</code> return the
removed item</li>
</ul>
<h2>[4.5.14] - 2024-08-08</h2>
<h3>Features</h3>
<ul>
<li><em>(unstable-ext)</em> Added <code>Arg::add</code> for attaching
arbitrary state, like completion hints, to <code>Arg</code> without
<code>Arg</code> knowing about it</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/clap-rs/clap/commit/0d142f6c04a702b791d2dfec8327661ba1b6d16c"><code>0d142f6</code></a>
chore: Release</li>
<li><a
href="https://github.com/clap-rs/clap/commit/0facf1f370e7966a4d97bce56d1d10ca4c80d0ae"><code>0facf1f</code></a>
docs: Update changelog</li>
<li><a
href="https://github.com/clap-rs/clap/commit/ee6af99c6c5e239c0f2c92f9d1baf8aa3bb4af90"><code>ee6af99</code></a>
Merge pull request <a
href="https://redirect.github.com/clap-rs/clap/issues/5743">#5743</a>
from epage/sort</li>
<li><a
href="https://github.com/clap-rs/clap/commit/232ee106615e997f0841bb3de97eed126b929fe3"><code>232ee10</code></a>
fix(complete): Use existing display order for Arg/Command</li>
<li><a
href="https://github.com/clap-rs/clap/commit/c6b5d627a0c17527630e4086a4fe83589365d1f0"><code>c6b5d62</code></a>
feat(builder): Expose get_display_order</li>
<li><a
href="https://github.com/clap-rs/clap/commit/67d9fef9cee8f1b297aed73e6d95f78744b43a27"><code>67d9fef</code></a>
feat(complete): Give control over display order</li>
<li><a
href="https://github.com/clap-rs/clap/commit/59a61e188fbb9999db52f567e3951d3720204084"><code>59a61e1</code></a>
refactor(complete): Pull out common candidate code</li>
<li><a
href="https://github.com/clap-rs/clap/commit/144879194081212046d5566572bfa15ea9bcca35"><code>1448791</code></a>
fix(complete): Specify tags for built-in candiates</li>
<li><a
href="https://github.com/clap-rs/clap/commit/a4aa5dffdf46a2975f2b2d51ce7e618e19250ead"><code>a4aa5df</code></a>
feat(complete): Group by tag</li>
<li><a
href="https://github.com/clap-rs/clap/commit/a126149a809f01586ccb6d9299eb2fc2c87d8fe0"><code>a126149</code></a>
refactor(complete): Remove redundant dedup</li>
<li>Additional commits viewable in <a
href="https://github.com/clap-rs/clap/compare/v4.5.13...v4.5.18">compare
view</a></li>
</ul>
</details>
<br />

Updates `const_format_proc_macros` from 0.2.32 to 0.2.33
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/rodrimati1992/const_format_crates/blob/master/Changelog.md">const_format_proc_macros's
changelog</a>.</em></p>
<blockquote>
<h3>0.2.33</h3>
<p>Fixed Rust Analyzer style warning for assertion macros.</p>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li>See full diff in <a
href="https://github.com/rodrimati1992/const_format_crates/commits">compare
view</a></li>
</ul>
</details>
<br />

Updates `cpufeatures` from 0.2.13 to 0.2.14
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/RustCrypto/utils/commit/6a87dce97c9f927bea999ab957ccb6bc60a6c36f"><code>6a87dce</code></a>
cpufeatures v0.2.14 (<a
href="https://redirect.github.com/RustCrypto/utils/issues/1104">#1104</a>)</li>
<li><a
href="https://github.com/RustCrypto/utils/commit/4be67893ccece4823b606c5e29eccd44f7e07450"><code>4be6789</code></a>
aarch64-dit: initial crate (<a
href="https://redirect.github.com/RustCrypto/utils/issues/1102">#1102</a>)</li>
<li><a
href="https://github.com/RustCrypto/utils/commit/141756093ae5ee316af9cd3b459d4c5225bc86dd"><code>1417560</code></a>
README.md(s): use img.shields.io crate version badges</li>
<li><a
href="https://github.com/RustCrypto/utils/commit/cfa21ea50a22df26a52e17649e203e0c2657154d"><code>cfa21ea</code></a>
cpufeatures: add DIT support for AArch64 Linux targets (<a
href="https://redirect.github.com/RustCrypto/utils/issues/1101">#1101</a>)</li>
<li><a
href="https://github.com/RustCrypto/utils/commit/1ad40787ec88039f829144ef59b7bc506eaf07ed"><code>1ad4078</code></a>
cpufeatures: add support for DIT detection on Apple silicon (<a
href="https://redirect.github.com/RustCrypto/utils/issues/1100">#1100</a>)</li>
<li><a
href="https://github.com/RustCrypto/utils/commit/5d46aba5ef3720e854f48d93243c247e4611b125"><code>5d46aba</code></a>
block-buffer: release v0.11.0-rc.1 (<a
href="https://redirect.github.com/RustCrypto/utils/issues/1098">#1098</a>)</li>
<li>See full diff in <a
href="https://github.com/RustCrypto/utils/compare/cpufeatures-v0.2.13...cpufeatures-v0.2.14">compare
view</a></li>
</ul>
</details>
<br />

Updates `fastrand` from 2.1.0 to 2.1.1
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/smol-rs/fastrand/releases">fastrand's
releases</a>.</em></p>
<blockquote>
<h2>v2.1.1</h2>
<ul>
<li>Remove support for 128-bit targets, as they are not supported by
rustc yet. (<a
href="https://redirect.github.com/smol-rs/fastrand/issues/87">#87</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/smol-rs/fastrand/blob/master/CHANGELOG.md">fastrand's
changelog</a>.</em></p>
<blockquote>
<h1>Version 2.1.1</h1>
<ul>
<li>Remove support for 128-bit targets, as they are not supported by
rustc yet. (<a
href="https://redirect.github.com/smol-rs/fastrand/issues/87">#87</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/smol-rs/fastrand/commit/9d1a66fe46cee30e6c716812a9df467c653fa290"><code>9d1a66f</code></a>
v2.1.1</li>
<li><a
href="https://github.com/smol-rs/fastrand/commit/d05504dee3e2ec359fca62db9353de2ad3dfff40"><code>d05504d</code></a>
bugfix: Remove 128-bit value generator</li>
<li><a
href="https://github.com/smol-rs/fastrand/commit/7e60c7f688f9be3dcd4f59f216c87dac88ca2902"><code>7e60c7f</code></a>
chore: Forgot to bump the version</li>
<li>See full diff in <a
href="https://github.com/smol-rs/fastrand/compare/v2.1.0...v2.1.1">compare
view</a></li>
</ul>
</details>
<br />

Updates `flate2` from 1.0.32 to 1.0.34
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/rust-lang/flate2-rs/releases">flate2's
releases</a>.</em></p>
<blockquote>
<h2>1.0.34</h2>
<h2>What's Changed</h2>
<ul>
<li>Add minimum build test back in to CI by <a
href="https://github.com/jongiddy"><code>@​jongiddy</code></a> in <a
href="https://redirect.github.com/rust-lang/flate2-rs/pull/426">rust-lang/flate2-rs#426</a></li>
<li>docs: fix compression level range from 0-9 to 0-10 by <a
href="https://github.com/ByteBaker"><code>@​ByteBaker</code></a> in <a
href="https://redirect.github.com/rust-lang/flate2-rs/pull/427">rust-lang/flate2-rs#427</a></li>
<li>Document backend differences in compression levels by <a
href="https://github.com/Shnatsel"><code>@​Shnatsel</code></a> in <a
href="https://redirect.github.com/rust-lang/flate2-rs/pull/430">rust-lang/flate2-rs#430</a></li>
<li>Upgrade zlib-rs to 0.3.0 to get multiple bugfixes by <a
href="https://github.com/Shnatsel"><code>@​Shnatsel</code></a> in <a
href="https://redirect.github.com/rust-lang/flate2-rs/pull/428">rust-lang/flate2-rs#428</a></li>
<li>Better wording in compression level docs by <a
href="https://github.com/Shnatsel"><code>@​Shnatsel</code></a> in <a
href="https://redirect.github.com/rust-lang/flate2-rs/pull/431">rust-lang/flate2-rs#431</a></li>
</ul>
<h2>New Contributors</h2>
<ul>
<li><a href="https://github.com/ByteBaker"><code>@​ByteBaker</code></a>
made their first contribution in <a
href="https://redirect.github.com/rust-lang/flate2-rs/pull/427">rust-lang/flate2-rs#427</a></li>
<li><a href="https://github.com/Shnatsel"><code>@​Shnatsel</code></a>
made their first contribution in <a
href="https://redirect.github.com/rust-lang/flate2-rs/pull/430">rust-lang/flate2-rs#430</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/rust-lang/flate2-rs/compare/1.0.33...1.0.34">https://github.com/rust-lang/flate2-rs/compare/1.0.33...1.0.34</a></p>
<h2>1.0.33 - fix minimal manifest versions</h2>
<h2>What's Changed</h2>
<ul>
<li>Fix msrv: Run msrv checks with minimal versions by <a
href="https://github.com/NobodyXu"><code>@​NobodyXu</code></a> in <a
href="https://redirect.github.com/rust-lang/flate2-rs/pull/425">rust-lang/flate2-rs#425</a></li>
</ul>
<h2>New Contributors</h2>
<ul>
<li><a href="https://github.com/NobodyXu"><code>@​NobodyXu</code></a>
made their first contribution in <a
href="https://redirect.github.com/rust-lang/flate2-rs/pull/425">rust-lang/flate2-rs#425</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/rust-lang/flate2-rs/compare/1.0.32...1.0.33">https://github.com/rust-lang/flate2-rs/compare/1.0.32...1.0.33</a></p>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/rust-lang/flate2-rs/commit/1a28821dc116dac14178858be056e4a58ef8f501"><code>1a28821</code></a>
Merge pull request <a
href="https://redirect.github.com/rust-lang/flate2-rs/issues/431">#431</a>
from Shnatsel/better-wording</li>
<li><a
href="https://github.com/rust-lang/flate2-rs/commit/2c29780e5093b10c21954384cd97243770376814"><code>2c29780</code></a>
Merge pull request <a
href="https://redirect.github.com/rust-lang/flate2-rs/issues/428">#428</a>
from Shnatsel/upgrade-zlib-rs</li>
<li><a
href="https://github.com/rust-lang/flate2-rs/commit/423981aede8670a51d2c3aa657ae528152c0f64e"><code>423981a</code></a>
Better wording in compression level docs</li>
<li><a
href="https://github.com/rust-lang/flate2-rs/commit/da5c8cfd917b0ec2aeacc2e514b27b6bd50726e4"><code>da5c8cf</code></a>
Bump version</li>
<li><a
href="https://github.com/rust-lang/flate2-rs/commit/eeee4c641187628ec8676ffb24300c5da6bfb066"><code>eeee4c6</code></a>
Merge pull request <a
href="https://redirect.github.com/rust-lang/flate2-rs/issues/430">#430</a>
from Shnatsel/detailed-level-docs</li>
<li><a
href="https://github.com/rust-lang/flate2-rs/commit/731df32113188f3372367402b9ea2b…
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.

2 participants