Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

build(deps): bump the cargo-dependencies group across 1 directory with 47 updates #315

Closed

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Nov 25, 2024

Bumps the cargo-dependencies group with 32 updates in the / directory:

Package From To
clap 4.5.20 4.5.21
flate2 1.0.34 1.0.35
h2 0.4.6 0.4.7
hyper 1.5.0 1.5.1
mio 0.8.11 1.0.2
quinn 0.11.5 0.11.6
rdkafka 0.36.2 0.36.3
rustls 0.23.16 0.23.18
rustls-native-certs 0.7.3 0.8.0
serde 1.0.214 1.0.215
webpki-roots 0.26.6 0.26.7
allocator-api2 0.2.19 0.2.20
arrow-buffer 53.2.0 53.3.0
arrow-data 53.2.0 53.3.0
aws-lc-rs 1.10.0 1.11.1
cc 1.1.37 1.2.1
clap_lex 0.7.2 0.7.3
cpufeatures 0.2.14 0.2.16
itoa 1.0.11 1.0.13
libc 0.2.162 0.2.164
linkme 0.3.29 0.3.31
litemap 0.7.3 0.7.4
proc-macro2 1.0.89 1.0.92
regex-automata 0.4.8 0.4.9
rustix 0.38.40 0.38.41
schannel 0.1.26 0.1.27
serde_json 1.0.132 1.0.133
unicode-ident 1.0.13 1.0.14
url 2.5.3 2.5.4
yoke 0.7.4 0.7.5
zerofrom 0.1.4 0.1.5
zerofrom-derive 0.1.4 0.1.5

Updates clap from 4.5.20 to 4.5.21

Release notes

Sourced from clap's releases.

v4.5.21

[4.5.21] - 2024-11-13

Fixes

  • (parser) Ensure defaults are filled in on error with ignore_errors(true)
Changelog

Sourced from clap's changelog.

[4.5.21] - 2024-11-13

Fixes

  • (parser) Ensure defaults are filled in on error with ignore_errors(true)
Commits
  • 03d7226 chore: Release
  • 3df70fb docs: Update changelog
  • 3266c36 Merge pull request #5691 from epage/custom
  • 951762d feat(complete): Allow any OsString-compatible type to be a CompletionCandidate
  • bb6493e feat(complete): Offer - as a path option
  • 27b348d refactor(complete): Simplify ArgValueCandidates code
  • 49b8108 feat(complete): Add PathCompleter
  • 82a360a feat(complete): Add ArgValueCompleter
  • 47aedc6 fix(complete): Ensure paths are sorted
  • 431e2bc test(complete): Ensure ArgValueCandidates get filtered
  • Additional commits viewable in compare view

Updates flate2 from 1.0.34 to 1.0.35

Release notes

Sourced from flate2's releases.

1.0.35 - security update to zlib-rs

What's Changed

New Contributors

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

Commits

Updates h2 from 0.4.6 to 0.4.7

Release notes

Sourced from h2's releases.

v0.4.7

What's Changed

  • Fix treating HEADERS frames with a non-zero content-length but END_STREAM flag as malformed.
  • Fix notifying the stream task when automatically reset on receipt of a stream error.

New Contributors

Thanks

Full Changelog: hyperium/h2@v0.4.6...v0.4.7

Changelog

Sourced from h2's changelog.

0.4.7 (November 19, 2024)

  • Fix treating HEADERS frames with a non-zero content-length but END_STREAM flag as malformed.
  • Fix notifying the stream task when automatically reset on receipt of a stream error.
Commits
  • cffea95 v0.4.7
  • 3ac6016 fix: notify_recv after send_reset() in reset_on_recv_stream_err() to ensure l...
  • 640db36 fix: HEADERS frame with non-zero content-length and END_STREAM is malformed (...
  • 87c9be0 ci: pin hashbrown for msrv job (#814)
  • 848885b improve ci/h2spec.sh (macOS compat, /tmp dir and overwrite) (#809)
  • 4d66d5d style: replace split_to and split_off with better alternatives
  • 77be664 chore(ci): use tokio-util 0.7.11 in MSRV check
  • See full diff in compare view

Updates hyper from 1.5.0 to 1.5.1

Release notes

Sourced from hyper's releases.

v1.5.1

Bug Fixes

  • http2:
    • pass proper value to h2 max_local_error_reset_streams (4a20147a)
    • improve graceful shutdown during handshake (#3729) (13b05943)

What's Changed

New Contributors

Thanks

Full Changelog: hyperium/hyper@v1.5.0...v1.5.1

Changelog

Sourced from hyper's changelog.

v1.5.1 (2024-11-19)

Bug Fixes

  • http2:
    • pass proper value to h2 max_local_error_reset_streams (4a20147a)
    • improve graceful shutdown during handshake (#3729) (13b05943)
Commits
  • 3b7375a v1.5.1
  • 65026b2 chore(dependencies): remove libc crate from dependencies (#3377)
  • 4a20147 fix(http2): pass proper value to h2 max_local_error_reset_streams
  • 4694f38 chore(ci): pin hashbrown in MSRV job (#3783)
  • 13b0594 fix(http2): improve graceful shutdown during handshake (#3729)
  • 906f8db docs(lib): do not inline http rexports
  • 720d2db docs(lib): fix up misleading example about unstable features
  • 17fddd3 test(client): unflake client try_send_request unit test
  • See full diff in compare view

Updates mio from 0.8.11 to 1.0.2

Changelog

Sourced from mio's changelog.

1.0.2

1.0.1

1.0

With v1 Mio is able to bump its MSRV to 1.70, allowing us to implement I/O safety traits (rust-lang/rust#87074) and replace SocketAddr with the version found in the standard library.

Added

Removed

  • The SocketAddr type is removed in favour of std::os::unix::net::SocketAddr (tokio-rs/mio#1760). All methods on Mio's version should exist on the version in the standard library.

... (truncated)

Commits
  • e66deb9 Release v1.0.2
  • 59c5da6 Fix Hermit build
  • 38d1946 fixup! Copy illumos waker pipe work around to eventfd
  • 619c909 Copy illumos waker pipe work around to eventfd
  • 4a5114e Release v1.0.1
  • 5306ad3 Remove last null from UDS address
  • 91881b1 Add GNU/Hurd support
  • 1ce1545 Hermit doesn't support pipe(2)
  • 1133ed0 Move waker cfg attributes to sys::unix module
  • f3863f1 Add new_unregistered function to fd based wakers
  • Additional commits viewable in compare view

Updates quinn from 0.11.5 to 0.11.6

Commits
  • d23e4e4 CI: add test for netbsd
  • bb4df4d fixes quinn-rs/quinn#2033
  • 66546dd quinn: bump version to 0.11.6
  • ca1f2ef Revert "crypto: expose negotiated_cipher_suite in the hadshake data"
  • 2a8b904 proto: bump version to 0.11.9
  • eebccff quinn: Fix missing re-exports
  • 7944e0f proto: Fix missing re-exports
  • 8c66491 proto: Rename frame::Type to FrameType
  • 18b7956 build(deps): update thiserror requirement from 1.0.21 to 2.0.3
  • 9be256e feat: enable rustls logging, gated by rustls-log feature flag
  • Additional commits viewable in compare view

Updates rdkafka from 0.36.2 to 0.36.3

Changelog

Sourced from rdkafka's changelog.

Changelog

See also the rdkafka-sys changelog.

Unreleased

  • Update MSRV to 1.70
  • Remove testing for old Kafka versions (before 3.0). Add tests for 3.7.
  • Fix test dependency on docker compose.
  • Address wakeup races introduced by pivoting to the event API.
Commits
  • 9d2976f Release v0.36.3.
  • 64b9e27 Bump rdkafka-sys for release.
  • d2dcd52 Update changelogs in prep for releasing.
  • bc4c76a Merge pull request #660 from FSMaxB/patch-1
  • 0578206 Merge pull request #715 from Xuanwo/use-backon
  • d906714 chore: Use backon to replace backoff
  • f71185c Merge pull request #713 from mlowicki/mlowicki/optimise_ownedheaders_insert
  • b2bcf19 Merge pull request #655 from trtt/fix/logs
  • 11790be Merge pull request #724 from svix-jplatte/upgrade-num_enum
  • 5a16de7 Merge pull request #732 from MaterializeInc/relax-clone-bound2
  • Additional commits viewable in compare view

Updates rustls from 0.23.16 to 0.23.18

Commits
  • 33af2c3 Prepare 0.23.18
  • ffe646d Add reproducer for bug 2227
  • 69b6f74 Record and restore the processed cursor in first_handshake_message
  • 4ef3532 Upgrade to mio 1
  • 092a164 Manage dependencies via the workspace
  • a01bd6b rustls-bench: fix warnings with no features
  • 7d74de2 tests: linearize new test code helper
  • 499d797 fix: do not send session_ticket(35) extension for TLS 1.3
  • faca289 chore(deps): lock file maintenance
  • d12f423 fix(deps): update rust crate asn1 to 0.20
  • Additional commits viewable in compare view

Updates rustls-native-certs from 0.7.3 to 0.8.0

Release notes

Sourced from rustls-native-certs's releases.

0.8.0

Breaking changes

  • load_native_certs() now returns a CertificateResult value containing all the certificates that were successfully found as well as any errors encountered. Changes made in 0.7.1 in order to find certificates in more locations resulted in new errors in scenarios that previously worked for most users. This change allows callers to determine the error handling strategy most appropriate to their application.

What's Changed

Commits
  • 0c2305c Bump version to 0.8.0 for incompatible changes
  • 8aa350a Return all errors to caller
  • cc1222a windows: reorder items
  • a370164 windows: import types directly
  • 202aee2 Organize imports in StdExternalCrate order
  • 290bdac Apply clippy suggestions for test targets
  • See full diff in compare view

Updates serde from 1.0.214 to 1.0.215

Release notes

Sourced from serde's releases.

v1.0.215

  • Produce warning when multiple fields or variants have the same deserialization name (#2855, #2856, #2857)
Commits
  • 8939af4 Release 1.0.215
  • fa5d58c Use ui test syntax that does not interfere with rustfmt
  • 1a3cf4b Update PR 2562 ui tests
  • 7d96352 Merge pull request #2857 from dtolnay/collide
  • 111ecc5 Update ui tests for warning on colliding aliases
  • edd6fe9 Revert "Add checks for conflicts for aliases"
  • a20e924 Revert "pacify clippy"
  • b1353a9 Merge pull request #2856 from dtolnay/dename
  • c59e876 Produce a separate warning for every colliding name
  • 7f1e697 Merge pull request #2855 from dtolnay/namespan
  • Additional commits viewable in compare view

Updates webpki-roots from 0.26.6 to 0.26.7

Release notes

Sourced from webpki-roots's releases.

0.26.7

Upstream changes

What's Changed

New Contributors

Full Changelog: rustls/webpki-roots@v/0.26.6...v/0.26.7

Commits

Updates allocator-api2 from 0.2.19 to 0.2.20

Commits

Updates arrow-buffer from 53.2.0 to 53.3.0

Changelog

Sourced from arrow-buffer's changelog.

Historical Changelog

Commits

Updates arrow-data from 53.2.0 to 53.3.0

Changelog

Sourced from arrow-data's changelog.

Historical Changelog

Commits

Updates arrow-schema from 53.2.0 to 53.3.0

Changelog

Sourced from arrow-schema's changelog.

Historical Changelog

Commits

Updates aws-lc-rs from 1.10.0 to 1.11.1

Release notes

Sourced from aws-lc-rs's releases.

aws-lc-rs v1.11.1

What's Changed

Build Improvements

Issues being resolved

  • #581 - Support importing RSA parameters manually for encryption with Pkcs1PublicEncryptingKey
  • #599 - ffile-prefix-map argument not quoted
  • #600 - All version of aws-lc-fips-sys fail to build docs on docs.rs
  • #602 - Build fail for aarch64-apple-ios

Other Merged PRs

New Contributors

Full Changelog: aws/aws-lc-rs@v1.11.0...v1.11.1

aws-lc-rs v1.11.0

What's Changed

Build Improvements

Issues being resolved

  • #572 - Add Ed25519KeyPair::generate(&rng) function
  • #574 - Compilation fails for release mode on powerpc64le-unknown-linux-gnu
  • #575 - [Feature Request] Support CFB mode for AES
  • #587 - error: failed to run custom build command for aws-lc-fips-sys v0.12.13
  • #591 - New release for aws-lc-sys, please

... (truncated)

Commits

Updates aws-lc-sys from 0.22.0 to 0.23.1

Commits

Updates cc from 1.1.37 to 1.2.1

Release notes

Sourced from cc's releases.

cc-v1.2.1

Other

  • When invoking cl -?, set stdin to null (#1288)

cc-v1.2.0

Added

  • add i686-pc-windows-gnullvm prefix detection (#1283)

Other

  • Allow only specifying the architecture (#1285)
  • Fix WASM vs. WASI options (#1284)
Changelog

Sourced from cc's changelog.

1.2.1 - 2024-11-14

Other

  • When invoking cl -?, set stdin to null (#1288)

1.2.0 - 2024-11-11

Added

  • add i686-pc-windows-gnullvm prefix detection (#1283)

Other

  • Allow only specifying the architecture (#1285)
  • Fix WASM vs. WASI options (#1284)
Commits

Updates clap_builder from 4.5.20 to 4.5.21

Release notes

Sourced from clap_builder's releases.

v4.5.21

[4.5.21] - 2024-11-13

Fixes

  • (parser) Ensure defaults are filled in on error with ignore_errors(true)
Changelog

Sourced from clap_builder's changelog.

[4.5.21] - 2024-11-13

Fixes

  • (parser) Ensure defaults are filled in on error with ignore_errors(true)
Commits
  • 2920fb0 chore: Release
  • 8902627 docs: Update changelog
  • 79d696f Merge pull request #5813 from epage/ignore
  • 479df35 fix(parser): Fill in defaults on ignored error
  • a1d69ca refactor(parser): Split up parsing from post-processing
  • 6827841 test(parser): Show bad ignore_errors defaulting case
  • 76d0049 test(parser): Verify defaulting on errors
  • 3f5c05c test(parser): Ensure we are actually testing ignore_errors
  • ba4745d chore(ci): Fix use of permissions
  • 22944b4 chore(ci): Use matrix for tracking the runner
  • Additional commits viewable in compare view

Updates clap_lex from 0.7.2 to 0.7.3

Changelog

Sourced from clap_lex's changelog.

v0.7.3 (2015-05-03)

Bug Fixes

  • RequiredValues fixes a bug where missing values are parsed as missing arguments (93c4a723)

Improvements

  • ErrorMessages improves error messages and corrections (a29c3983)
  • ArgGroups improves requirement and confliction support for groups (c236dc5f)
Commits

…h 47 updates

Bumps the cargo-dependencies group with 32 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [clap](https://github.com/clap-rs/clap) | `4.5.20` | `4.5.21` |
| [flate2](https://github.com/rust-lang/flate2-rs) | `1.0.34` | `1.0.35` |
| [h2](https://github.com/hyperium/h2) | `0.4.6` | `0.4.7` |
| [hyper](https://github.com/hyperium/hyper) | `1.5.0` | `1.5.1` |
| [mio](https://github.com/tokio-rs/mio) | `0.8.11` | `1.0.2` |
| [quinn](https://github.com/quinn-rs/quinn) | `0.11.5` | `0.11.6` |
| [rdkafka](https://github.com/fede1024/rust-rdkafka) | `0.36.2` | `0.36.3` |
| [rustls](https://github.com/rustls/rustls) | `0.23.16` | `0.23.18` |
| [rustls-native-certs](https://github.com/rustls/rustls-native-certs) | `0.7.3` | `0.8.0` |
| [serde](https://github.com/serde-rs/serde) | `1.0.214` | `1.0.215` |
| [webpki-roots](https://github.com/rustls/webpki-roots) | `0.26.6` | `0.26.7` |
| [allocator-api2](https://github.com/zakarumych/allocator-api2) | `0.2.19` | `0.2.20` |
| [arrow-buffer](https://github.com/apache/arrow-rs) | `53.2.0` | `53.3.0` |
| [arrow-data](https://github.com/apache/arrow-rs) | `53.2.0` | `53.3.0` |
| [aws-lc-rs](https://github.com/aws/aws-lc-rs) | `1.10.0` | `1.11.1` |
| [cc](https://github.com/rust-lang/cc-rs) | `1.1.37` | `1.2.1` |
| [clap_lex](https://github.com/clap-rs/clap) | `0.7.2` | `0.7.3` |
| [cpufeatures](https://github.com/RustCrypto/utils) | `0.2.14` | `0.2.16` |
| [itoa](https://github.com/dtolnay/itoa) | `1.0.11` | `1.0.13` |
| [libc](https://github.com/rust-lang/libc) | `0.2.162` | `0.2.164` |
| [linkme](https://github.com/dtolnay/linkme) | `0.3.29` | `0.3.31` |
| [litemap](https://github.com/unicode-org/icu4x) | `0.7.3` | `0.7.4` |
| [proc-macro2](https://github.com/dtolnay/proc-macro2) | `1.0.89` | `1.0.92` |
| [regex-automata](https://github.com/rust-lang/regex) | `0.4.8` | `0.4.9` |
| [rustix](https://github.com/bytecodealliance/rustix) | `0.38.40` | `0.38.41` |
| [schannel](https://github.com/steffengy/schannel-rs) | `0.1.26` | `0.1.27` |
| [serde_json](https://github.com/serde-rs/json) | `1.0.132` | `1.0.133` |
| [unicode-ident](https://github.com/dtolnay/unicode-ident) | `1.0.13` | `1.0.14` |
| [url](https://github.com/servo/rust-url) | `2.5.3` | `2.5.4` |
| [yoke](https://github.com/unicode-org/icu4x) | `0.7.4` | `0.7.5` |
| [zerofrom](https://github.com/unicode-org/icu4x) | `0.1.4` | `0.1.5` |
| [zerofrom-derive](https://github.com/unicode-org/icu4x) | `0.1.4` | `0.1.5` |



Updates `clap` from 4.5.20 to 4.5.21
- [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.20...clap_complete-v4.5.21)

Updates `flate2` from 1.0.34 to 1.0.35
- [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.34...1.0.35)

Updates `h2` from 0.4.6 to 0.4.7
- [Release notes](https://github.com/hyperium/h2/releases)
- [Changelog](https://github.com/hyperium/h2/blob/master/CHANGELOG.md)
- [Commits](hyperium/h2@v0.4.6...v0.4.7)

Updates `hyper` from 1.5.0 to 1.5.1
- [Release notes](https://github.com/hyperium/hyper/releases)
- [Changelog](https://github.com/hyperium/hyper/blob/master/CHANGELOG.md)
- [Commits](hyperium/hyper@v1.5.0...v1.5.1)

Updates `mio` from 0.8.11 to 1.0.2
- [Release notes](https://github.com/tokio-rs/mio/releases)
- [Changelog](https://github.com/tokio-rs/mio/blob/master/CHANGELOG.md)
- [Commits](tokio-rs/mio@v0.8.11...v1.0.2)

Updates `quinn` from 0.11.5 to 0.11.6
- [Release notes](https://github.com/quinn-rs/quinn/releases)
- [Commits](quinn-rs/quinn@quinn-0.11.5...quinn-0.11.6)

Updates `rdkafka` from 0.36.2 to 0.36.3
- [Changelog](https://github.com/fede1024/rust-rdkafka/blob/master/changelog.md)
- [Commits](fede1024/rust-rdkafka@v0.36.2...v0.36.3)

Updates `rustls` from 0.23.16 to 0.23.18
- [Release notes](https://github.com/rustls/rustls/releases)
- [Changelog](https://github.com/rustls/rustls/blob/main/CHANGELOG.md)
- [Commits](rustls/rustls@v/0.23.16...v/0.23.18)

Updates `rustls-native-certs` from 0.7.3 to 0.8.0
- [Release notes](https://github.com/rustls/rustls-native-certs/releases)
- [Commits](rustls/rustls-native-certs@v/0.7.3...v/0.8.0)

Updates `serde` from 1.0.214 to 1.0.215
- [Release notes](https://github.com/serde-rs/serde/releases)
- [Commits](serde-rs/serde@v1.0.214...v1.0.215)

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

Updates `allocator-api2` from 0.2.19 to 0.2.20
- [Changelog](https://github.com/zakarumych/allocator-api2/blob/main/CHANGELOG.md)
- [Commits](https://github.com/zakarumych/allocator-api2/commits)

Updates `arrow-buffer` from 53.2.0 to 53.3.0
- [Changelog](https://github.com/apache/arrow-rs/blob/main/CHANGELOG-old.md)
- [Commits](apache/arrow-rs@53.2.0...53.3.0)

Updates `arrow-data` from 53.2.0 to 53.3.0
- [Changelog](https://github.com/apache/arrow-rs/blob/main/CHANGELOG-old.md)
- [Commits](apache/arrow-rs@53.2.0...53.3.0)

Updates `arrow-schema` from 53.2.0 to 53.3.0
- [Changelog](https://github.com/apache/arrow-rs/blob/main/CHANGELOG-old.md)
- [Commits](apache/arrow-rs@53.2.0...53.3.0)

Updates `aws-lc-rs` from 1.10.0 to 1.11.1
- [Release notes](https://github.com/aws/aws-lc-rs/releases)
- [Commits](aws/aws-lc-rs@v1.10.0...v1.11.1)

Updates `aws-lc-sys` from 0.22.0 to 0.23.1
- [Release notes](https://github.com/aws/aws-lc-rs/releases)
- [Commits](aws/aws-lc-rs@aws-lc-sys/v0.22.0...aws-lc-sys/v0.23.1)

Updates `cc` from 1.1.37 to 1.2.1
- [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.37...cc-v1.2.1)

Updates `clap_builder` from 4.5.20 to 4.5.21
- [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.20...v4.5.21)

Updates `clap_lex` from 0.7.2 to 0.7.3
- [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_lex-v0.7.2...clap_lex-v0.7.3)

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

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

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

Updates `linkme` from 0.3.29 to 0.3.31
- [Release notes](https://github.com/dtolnay/linkme/releases)
- [Commits](dtolnay/linkme@0.3.29...0.3.31)

Updates `linkme-impl` from 0.3.29 to 0.3.31
- [Release notes](https://github.com/dtolnay/linkme/releases)
- [Commits](dtolnay/linkme@0.3.29...0.3.31)

Updates `litemap` from 0.7.3 to 0.7.4
- [Release notes](https://github.com/unicode-org/icu4x/releases)
- [Changelog](https://github.com/unicode-org/icu4x/blob/main/CHANGELOG.md)
- [Commits](https://github.com/unicode-org/icu4x/commits)

Updates `num_enum` from 0.5.11 to 0.7.3
- [Commits](illicitonion/num_enum@0.5.11...0.7.3)

Updates `num_enum_derive` from 0.5.11 to 0.7.3
- [Commits](illicitonion/num_enum@0.5.11...0.7.3)

Updates `proc-macro-crate` from 1.3.1 to 3.2.0
- [Release notes](https://github.com/bkchr/proc-macro-crate/releases)
- [Commits](bkchr/proc-macro-crate@v1.3.1...v3.2.0)

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

Updates `quinn-proto` from 0.11.8 to 0.11.9
- [Release notes](https://github.com/quinn-rs/quinn/releases)
- [Commits](quinn-rs/quinn@quinn-proto-0.11.8...quinn-proto-0.11.9)

Updates `rdkafka-sys` from 4.7.0+2.3.0 to 4.8.0+2.3.0
- [Changelog](https://github.com/fede1024/rust-rdkafka/blob/master/changelog.md)
- [Commits](https://github.com/fede1024/rust-rdkafka/commits)

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

Updates `rustix` from 0.38.40 to 0.38.41
- [Release notes](https://github.com/bytecodealliance/rustix/releases)
- [Changelog](https://github.com/bytecodealliance/rustix/blob/main/CHANGELOG.md)
- [Commits](bytecodealliance/rustix@v0.38.40...v0.38.41)

Updates `rustls-platform-verifier` from 0.3.4 to 0.4.0
- [Release notes](https://github.com/rustls/rustls-platform-verifier/releases)
- [Changelog](https://github.com/rustls/rustls-platform-verifier/blob/main/CHANGELOG)
- [Commits](rustls/rustls-platform-verifier@v/0.3.4...v/0.4.0)

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

Updates `serde_derive` from 1.0.214 to 1.0.215
- [Release notes](https://github.com/serde-rs/serde/releases)
- [Commits](serde-rs/serde@v1.0.214...v1.0.215)

Updates `serde_json` from 1.0.132 to 1.0.133
- [Release notes](https://github.com/serde-rs/json/releases)
- [Commits](serde-rs/json@v1.0.132...v1.0.133)

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

Updates `toml_edit` from 0.19.15 to 0.22.22
- [Commits](toml-rs/toml@v0.19.15...v0.22.22)

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

Updates `url` from 2.5.3 to 2.5.4
- [Release notes](https://github.com/servo/rust-url/releases)
- [Commits](servo/rust-url@v2.5.3...v2.5.4)

Updates `winnow` from 0.5.40 to 0.6.20
- [Changelog](https://github.com/winnow-rs/winnow/blob/main/CHANGELOG.md)
- [Commits](winnow-rs/winnow@v0.5.40...v0.6.20)

Updates `yoke` from 0.7.4 to 0.7.5
- [Release notes](https://github.com/unicode-org/icu4x/releases)
- [Changelog](https://github.com/unicode-org/icu4x/blob/main/CHANGELOG.md)
- [Commits](https://github.com/unicode-org/icu4x/commits)

Updates `yoke-derive` from 0.7.4 to 0.7.5
- [Release notes](https://github.com/unicode-org/icu4x/releases)
- [Changelog](https://github.com/unicode-org/icu4x/blob/main/CHANGELOG.md)
- [Commits](https://github.com/unicode-org/icu4x/commits)

Updates `zerofrom` from 0.1.4 to 0.1.5
- [Release notes](https://github.com/unicode-org/icu4x/releases)
- [Changelog](https://github.com/unicode-org/icu4x/blob/main/CHANGELOG.md)
- [Commits](https://github.com/unicode-org/icu4x/commits/ind/[email protected])

Updates `zerofrom-derive` from 0.1.4 to 0.1.5
- [Release notes](https://github.com/unicode-org/icu4x/releases)
- [Changelog](https://github.com/unicode-org/icu4x/blob/main/CHANGELOG.md)
- [Commits](https://github.com/unicode-org/icu4x/commits/ind/[email protected])

---
updated-dependencies:
- dependency-name: clap
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo-dependencies
- dependency-name: flate2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo-dependencies
- dependency-name: h2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo-dependencies
- dependency-name: hyper
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo-dependencies
- dependency-name: mio
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: cargo-dependencies
- dependency-name: quinn
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo-dependencies
- dependency-name: rdkafka
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo-dependencies
- dependency-name: rustls
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo-dependencies
- dependency-name: rustls-native-certs
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: cargo-dependencies
- dependency-name: serde
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo-dependencies
- dependency-name: webpki-roots
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo-dependencies
- dependency-name: allocator-api2
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: cargo-dependencies
- dependency-name: arrow-buffer
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: cargo-dependencies
- dependency-name: arrow-data
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: cargo-dependencies
- dependency-name: arrow-schema
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: cargo-dependencies
- dependency-name: aws-lc-rs
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: cargo-dependencies
- dependency-name: aws-lc-sys
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: cargo-dependencies
- dependency-name: cc
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: cargo-dependencies
- dependency-name: clap_builder
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: cargo-dependencies
- dependency-name: clap_lex
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: cargo-dependencies
- dependency-name: cpufeatures
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: cargo-dependencies
- dependency-name: itoa
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: cargo-dependencies
- dependency-name: libc
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: cargo-dependencies
- dependency-name: linkme
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: cargo-dependencies
- dependency-name: linkme-impl
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: cargo-dependencies
- dependency-name: litemap
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: cargo-dependencies
- dependency-name: num_enum
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: cargo-dependencies
- dependency-name: num_enum_derive
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: cargo-dependencies
- dependency-name: proc-macro-crate
  dependency-type: indirect
  update-type: version-update:semver-major
  dependency-group: cargo-dependencies
- dependency-name: proc-macro2
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: cargo-dependencies
- dependency-name: quinn-proto
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: cargo-dependencies
- dependency-name: rdkafka-sys
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: cargo-dependencies
- dependency-name: regex-automata
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: cargo-dependencies
- dependency-name: rustix
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: cargo-dependencies
- dependency-name: rustls-platform-verifier
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: cargo-dependencies
- dependency-name: schannel
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: cargo-dependencies
- dependency-name: serde_derive
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: cargo-dependencies
- dependency-name: serde_json
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: cargo-dependencies
- dependency-name: syn
  dependency-type: indirect
  update-type: version-update:semver-major
  dependency-group: cargo-dependencies
- dependency-name: toml_edit
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: cargo-dependencies
- dependency-name: unicode-ident
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: cargo-dependencies
- dependency-name: url
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: cargo-dependencies
- dependency-name: winnow
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: cargo-dependencies
- dependency-name: yoke
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: cargo-dependencies
- dependency-name: yoke-derive
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: cargo-dependencies
- dependency-name: zerofrom
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: cargo-dependencies
- dependency-name: zerofrom-derive
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: cargo-dependencies
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Nov 25, 2024
Copy link
Contributor Author

dependabot bot commented on behalf of github Dec 2, 2024

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

@dependabot dependabot bot closed this Dec 2, 2024
@dependabot dependabot bot deleted the dependabot/cargo/cargo-dependencies-f179d5dd15 branch December 2, 2024 02:13
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
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants