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 with 22 updates #312

Merged
merged 1 commit into from
Nov 16, 2024

Conversation

dependabot[bot]
Copy link
Contributor

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

Bumps the cargo-dependencies group with 22 updates:

Package From To
mio 0.8.11 1.0.2
openssl 0.10.66 0.10.68
rustls 0.23.14 0.23.16
rustls-native-certs 0.7.3 0.8.0
serde 1.0.210 1.0.214
tempfile 3.13.0 3.14.0
tokio 1.41.0 1.41.1
allocator-api2 0.2.18 0.2.19
anstream 0.6.17 0.6.18
anyhow 1.0.92 1.0.93
arrow 53.1.0 53.2.0
cc 1.1.34 1.1.37
csv 1.3.0 1.3.1
fastrand 2.1.1 2.2.0
libc 0.2.161 0.2.162
quinn-udp 0.5.6 0.5.7
rustix 0.38.38 0.38.40
security-framework-sys 2.12.0 2.12.1
serde_derive 1.0.210 1.0.214
thiserror 1.0.67 1.0.69
thiserror-impl 1.0.67 1.0.69
url 2.5.2 2.5.3

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 openssl from 0.10.66 to 0.10.68

Release notes

Sourced from openssl's releases.

openssl-v0.10.68

What's Changed

Full Changelog: sfackler/rust-openssl@openssl-v0.10.67...openssl-v0.10.68

openssl-v0.10.67

What's Changed

New Contributors

Full Changelog: sfackler/rust-openssl@openssl-v0.10.66...openssl-v0.10.67

Commits
  • be8dcfd Merge pull request #2318 from alex/msrv-fix
  • 065cc77 fixes #2317 -- restore compatibility with our MSRV and release openssl 0.9.68
  • 7b3ec80 Merge pull request #2316 from alex/bump-for-release
  • b510e8c Release openssl v0.10.67 and openssl-sys v0.9.104
  • ee3b024 Merge pull request #2315 from botovq/libressl-4.0.0
  • c4dabc2 CI: Update LibreSSL CI
  • f9027b7 LibreSSL 4.0.0 is released & stable
  • 1b51ba5 Merge pull request #2313 from sfackler/sfackler-patch-1
  • de8a97c Bump to 3.4.0-beta1
  • 3930464 Merge pull request #2312 from sfackler/alex-patch-1
  • Additional commits viewable in compare view

Updates rustls from 0.23.14 to 0.23.16

Commits
  • 276eb74 Bump version to 0.23.16 (#2183)
  • e07bdc9 Don't warn on UserCanceled alerts
  • a5d6350 chore(deps): lock file maintenance
  • 75e5503 builder: expose ConfigBuilder::crypto_provider()
  • aebe2c3 builder: store providers directly into ConfigBuilder
  • 121d813 Avoid feature unification for bogo
  • eb2a1c4 Move from kyber768 to ML-KEM768
  • 6264243 fix(deps): update rust crate asn1 to 0.18
  • 28ec955 ci: loosen lychee-action version
  • f7c9c30 ci: move lychee step before dir mv
  • 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.

v/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.210 to 1.0.214

Release notes

Sourced from serde's releases.

v1.0.214

  • Implement IntoDeserializer for all Deserializers in serde::de::value module (#2568, thanks @​Mingun)

v1.0.213

  • Fix support for macro-generated with attributes inside a newtype struct (#2847)

v1.0.212

  • Fix hygiene of macro-generated local variable accesses in serde(with) wrappers (#2845)

v1.0.211

  • Improve error reporting about mismatched signature in with and default attributes (#2558, thanks @​Mingun)
  • Show variant aliases in error message when variant deserialization fails (#2566, thanks @​Mingun)
  • Improve binary size of untagged enum and internally tagged enum deserialization by about 12% (#2821)
Commits
  • 4180621 Release 1.0.214
  • 210373b Merge pull request #2568 from Mingun/into_deserializer-for-deserializers
  • 9cda015 Implement IntoDeserializer for all Deserializers in serde::de::value module
  • 58a8d22 Release 1.0.213
  • ef0ed22 Merge pull request #2847 from dtolnay/newtypewith
  • 79925ac Ignore dead_code warning in regression test
  • b60e409 Hygiene for macro-generated newtype struct deserialization with 'with' attr
  • fdc36e5 Add regression test for issue 2846
  • 49e11ce Ignore trivially_copy_pass_by_ref pedantic clippy lint in test
  • 7ae1b5f Release 1.0.212
  • Additional commits viewable in compare view

Updates tempfile from 3.13.0 to 3.14.0

Changelog

Sourced from tempfile's changelog.

3.14.0

  • Make the wasip2 target work (requires tempfile's "nightly" feature to be enabled). #305.
  • Allow older windows-sys versions #304.
Commits

Updates tokio from 1.41.0 to 1.41.1

Release notes

Sourced from tokio's releases.

Tokio v1.41.1

1.41.1 (Nov 7th, 2024)

Fixed

  • metrics: fix bug with wrong number of buckets for the histogram (#6957)
  • net: display net requirement for net::UdpSocket in docs (#6938)
  • net: fix typo in TcpStream internal comment (#6944)

#6957: tokio-rs/tokio#6957 #6938: tokio-rs/tokio#6938 #6944: tokio-rs/tokio#6944

Commits
  • bb7ca75 chore: prepare Tokio v1.41.1 (#6959)
  • 4a34b77 metrics: fix bug with wrong number of buckets for the histogram (#6957)
  • 8897885 docs: fix mismatched backticks in CONTRIBUTING.md (#6951)
  • 0dbdd19 ci: update cargo-check-external-types to 0.1.13 (#6949)
  • 94e55c0 net: fix typo in TcpStream internal comment (#6944)
  • 4468f27 metrics: fixed flaky worker_steal_count test (#6932)
  • 070a825 metrics: removed race condition from global_queue_depth_multi_thread test (#6...
  • 946401c net: display net requirement for net::UdpSocket in docs (#6938)
  • 0c01fd2 ci: use patched version of cargo-check-external-types to fix CI failure (#6937)
  • ebe2416 ci: use cargo deny (#6931)
  • See full diff in compare view

Updates allocator-api2 from 0.2.18 to 0.2.19

Commits

Updates anstream from 0.6.17 to 0.6.18

Commits
  • fabe0c3 chore: Release
  • 762ca76 docs: Update changelog
  • d364ac4 Merge pull request #229 from epage/cfg
  • ad3f458 fix(stream): Respect 'test' feature
  • 0b8d105 fix(stream): Refer to correct stream on panic
  • 69cf6c9 refactor(stream): Pull out test macro body
  • c78b3c1 refactor(stream): Be extra clear that macros mod is not for use
  • ab37812 chore(deps): Update compatible (dev) (#226)
  • 7c48196 Merge pull request #227 from rust-cli/renovate/stable-1.x
  • a28405f style: Make clippy happy
  • Additional commits viewable in compare view

Updates anyhow from 1.0.92 to 1.0.93

Release notes

Sourced from anyhow's releases.

1.0.93

  • Update dev-dependencies to thiserror v2
Commits
  • 713bda9 Release 1.0.93
  • f91c247 Merge pull request #391 from dtolnay/thiserror
  • 2a3901c Isolate old rustc version tests from needing anyhow dev-dependencies in lockfile
  • 3ca2cdd Update dev-dependencies to thiserror v2
  • See full diff in compare view

Updates arrow from 53.1.0 to 53.2.0

Changelog

Sourced from arrow's changelog.

Historical Changelog

Commits
  • 10c4059 Prepare for 53.2.0 release (#6603)
  • c6048d5 Add limited support for dictionary builders in make_builders for stru… (#6593)
  • 6762d0b Add support for building FixedSizeListBuilder in struct_builder's mak… (#6595)
  • 2043353 Fix clippy complaints (#6573)
  • 79ea6ad Minor: more comments for RecordBatch.get_array_memory_size() (#6607)
  • 4d4c0c6 Implement arrow_json encoder for Decimal128 & Decimal256 (#6606)
  • 309be26 Update proc-macro2 requirement from =1.0.87 to =1.0.88 (#6579)
  • 04d0ebe unsafe improvements (#6551)
  • 18ef662 Fix typo in workflow comment (#6604)
  • 07aaaf9 Remove test_private_bucket object_store test (#6601)
  • Additional commits viewable in compare view

Updates cc from 1.1.34 to 1.1.37

Release notes

Sourced from cc's releases.

cc-v1.1.37

Other

  • Use relative directory for obj files hash (#1270)
  • Regenerate target info (#1280)

cc-v1.1.36

Other

  • Fix CUDA build with clang++. (#1273)

cc-v1.1.35

Other

  • Remove support for FRC (#1268)
  • Do not add -fPIC by default on UEFI targets (#1263)
  • Use -windows-gnu for all UEFI targets (#1264)
Changelog

Sourced from cc's changelog.

1.1.37 - 2024-11-08

Other

  • Use relative directory for obj files hash (#1270)
  • Regenerate target info (#1280)

1.1.36 - 2024-11-05

Other

  • Fix CUDA build with clang++. (#1273)

1.1.35 - 2024-11-04

Other

  • Remove support for FRC (#1268)
  • Do not add -fPIC by default on UEFI targets (#1263)
  • Use -windows-gnu for all UEFI targets (#1264)
Commits

Updates csv from 1.3.0 to 1.3.1

Commits

Updates fastrand from 2.1.1 to 2.2.0

Release notes

Sourced from fastrand's releases.

v2.2.0

  • Expose missing fill method for the global RNG. (#90)
Changelog

Sourced from fastrand's changelog.

Version 2.2.0

  • Expose missing fill method for the global RNG. (#90)
Commits

Updates libc from 0.2.161 to 0.2.162

Release notes

Sourced from libc's releases.

0.2.162

Added

Fixed

Other

Changelog

Sourced from libc's changelog.

0.2.162 - 2024-11-07

Added

Fixed

Other

Commits
  • b8c255c chore: release v0.2.162
  • acb0c19 Merge pull request #4020 from tgross35/backport-collard-greens
  • 33a772c feat: add ioctl flags in linux/if_tun.h
  • a3ca238 freebsd adding CLOSE_RANGE_CLOEXEC flag
  • 8c88d9a armv7-unknown-freebsd: fix test errors regarding __gregset_t
  • c0c9391 Fix the build on armv7-unknown-freebsd
  • d435e9b Merge pull request #4006 from tgross35/backport-spinach
  • 7ee37b9 Merge pull request #4017 from tgross35/backport-watercress
  • 073c7b4 Fix definition of FIODGNAME on 32-bit FreeBSD
  • 255b039 Fix size of struct kinfo_file on 32-bit FreeBSD
  • Additional commits viewable in compare view

Updates quinn-udp from 0.5.6 to 0.5.7

Release notes

Sourced from quinn-udp's releases.

quinn-udp-0.5.7

What's Changed

Commits
  • a0bcb35 quinn-udp: increase crate patch version to v0.5.7
  • 722835b Unbreak Solaris build after #1993
  • 13a9e5e Fix debug_assert when coalescing large packets
  • 8e4e762 Fix some packet/datagram confusion in comments
  • 690f0d9 Account for worst-case header + tag size when deciding to coalesce
  • d4e7691 Format
  • 2006eca const VarInt::size
  • 44651ca Adopt Option::insert
  • c3e70aa build(deps): update rustls-platform-verifier requirement from 0.3 to 0.4
  • See full diff in compare view

Updates rustix from 0.38.38 to 0.38.40

Commits
  • 309c288 chore: Release rustix version 0.38.40
  • feb5227 Clarify getppid documentation: explain how None can occur (#1209)
  • 81021ad Disable AF_NCA, VSTATUS, VERASE2, and fcntl_lock on Solaris. (#1211)
  • c9d06b2 Migrate from wasm32-wasi (no longer exists on nightly) to wasm32-wasip1 (#1210)
  • 8c50519 Disable epoll support on Solaris. (#1208)
  • 827830f chore: Release rustix version 0.38.39
  • 4919082 Update CI to macos-13. (#1207)
  • 4054d28 Enable a few features on more platforms. (#1203)
  • 2b4becf fix: enable wasip2 feature for wasm32-wasip2 target (#1205)
  • 9fd6e48 Don't store build check rmeta (#1200)
  • See full diff in compare view

Updates security-framework-sys from 2.12.0 to 2.12.1

Commits

Updates serde_derive from 1.0.210 to 1.0.214

Release notes

Sourced from serde_derive's releases.

v1.0.214

  • Implement IntoDeserializer for all Deserializers in serde::de::value module (#2568, thanks @​Mingun)

v1.0.213

  • Fix support for macro-generated with attributes inside a newtype struct (#2847)

v1.0.212

  • Fix hygiene of macro-generated local variable accesses in serde(with) wrappers (#2845)

v1.0.211

  • Improve error reporting about mismatched signature in with and default attributes (#2558, thanks @​Mingun)
  • Show variant aliases in error message when variant deserialization fails (#2566, thanks @​Mingun)
  • Improve binary size of untagged enum and internally tagged enum deserialization by about 12% (#2821)
Commits
  • 4180621 Release 1.0.214
  • 210373b Merge pull request #2568 from Mingun/into_deserializer-for-deserializers
  • 9cda015 Implement IntoDeserializer for all Deserializers in serde::de::value module
  • 58a8d22 Release 1.0.213
  • ef0ed22 Merge pull request #2847 from dtolnay/newtypewith
  • 79925ac Ignore dead_code warning in regression test
  • b60e409 Hygiene for macro-generated newtype struct deserialization with 'with' attr
  • fdc36e5 Add regression test for issue 2846
  • 49e11ce Ignore trivially_copy_pass_by_ref pedantic clippy lint in test
  • 7ae1b5f Release 1.0.212
  • Additional commits viewable in compare view

Updates thiserror from 1.0.67 to 1.0.69

Release notes

Sourced from thiserror's releases.

1.0.69

  • Backport 2.0.2 fixes

1.0.68

  • Handle incomplete expressions more robustly in format arguments, such as while code is being typed (#341, #344)
Commits

Bumps the cargo-dependencies group with 22 updates:

| Package | From | To |
| --- | --- | --- |
| [mio](https://github.com/tokio-rs/mio) | `0.8.11` | `1.0.2` |
| [openssl](https://github.com/sfackler/rust-openssl) | `0.10.66` | `0.10.68` |
| [rustls](https://github.com/rustls/rustls) | `0.23.14` | `0.23.16` |
| [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.210` | `1.0.214` |
| [tempfile](https://github.com/Stebalien/tempfile) | `3.13.0` | `3.14.0` |
| [tokio](https://github.com/tokio-rs/tokio) | `1.41.0` | `1.41.1` |
| [allocator-api2](https://github.com/zakarumych/allocator-api2) | `0.2.18` | `0.2.19` |
| [anstream](https://github.com/rust-cli/anstyle) | `0.6.17` | `0.6.18` |
| [anyhow](https://github.com/dtolnay/anyhow) | `1.0.92` | `1.0.93` |
| [arrow](https://github.com/apache/arrow-rs) | `53.1.0` | `53.2.0` |
| [cc](https://github.com/rust-lang/cc-rs) | `1.1.34` | `1.1.37` |
| [csv](https://github.com/BurntSushi/rust-csv) | `1.3.0` | `1.3.1` |
| [fastrand](https://github.com/smol-rs/fastrand) | `2.1.1` | `2.2.0` |
| [libc](https://github.com/rust-lang/libc) | `0.2.161` | `0.2.162` |
| [quinn-udp](https://github.com/quinn-rs/quinn) | `0.5.6` | `0.5.7` |
| [rustix](https://github.com/bytecodealliance/rustix) | `0.38.38` | `0.38.40` |
| [security-framework-sys](https://github.com/kornelski/rust-security-framework) | `2.12.0` | `2.12.1` |
| [serde_derive](https://github.com/serde-rs/serde) | `1.0.210` | `1.0.214` |
| [thiserror](https://github.com/dtolnay/thiserror) | `1.0.67` | `1.0.69` |
| [thiserror-impl](https://github.com/dtolnay/thiserror) | `1.0.67` | `1.0.69` |
| [url](https://github.com/servo/rust-url) | `2.5.2` | `2.5.3` |


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 `openssl` from 0.10.66 to 0.10.68
- [Release notes](https://github.com/sfackler/rust-openssl/releases)
- [Commits](sfackler/rust-openssl@openssl-v0.10.66...openssl-v0.10.68)

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

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.210 to 1.0.214
- [Release notes](https://github.com/serde-rs/serde/releases)
- [Commits](serde-rs/serde@v1.0.210...v1.0.214)

Updates `tempfile` from 3.13.0 to 3.14.0
- [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md)
- [Commits](Stebalien/tempfile@v3.13.0...v3.14.0)

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

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

Updates `anstream` from 0.6.17 to 0.6.18
- [Commits](rust-cli/anstyle@anstream-v0.6.17...anstream-v0.6.18)

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

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

Updates `cc` from 1.1.34 to 1.1.37
- [Release notes](https://github.com/rust-lang/cc-rs/releases)
- [Changelog](https://github.com/rust-lang/cc-rs/blob/main/CHANGELOG.md)
- [Commits](rust-lang/cc-rs@cc-v1.1.34...cc-v1.1.37)

Updates `csv` from 1.3.0 to 1.3.1
- [Commits](BurntSushi/rust-csv@1.3.0...1.3.1)

Updates `fastrand` from 2.1.1 to 2.2.0
- [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.1...v2.2.0)

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

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

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

Updates `security-framework-sys` from 2.12.0 to 2.12.1
- [Release notes](https://github.com/kornelski/rust-security-framework/releases)
- [Commits](https://github.com/kornelski/rust-security-framework/commits)

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

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

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

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

---
updated-dependencies:
- dependency-name: mio
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: cargo-dependencies
- dependency-name: openssl
  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: tempfile
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: cargo-dependencies
- dependency-name: tokio
  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: anstream
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: cargo-dependencies
- dependency-name: anyhow
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: cargo-dependencies
- dependency-name: arrow
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: cargo-dependencies
- dependency-name: cc
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: cargo-dependencies
- dependency-name: csv
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: cargo-dependencies
- dependency-name: fastrand
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: cargo-dependencies
- dependency-name: libc
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: cargo-dependencies
- dependency-name: quinn-udp
  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: security-framework-sys
  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: thiserror
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: cargo-dependencies
- dependency-name: thiserror-impl
  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
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Nov 11, 2024
@brayniac brayniac merged commit 0a7ae35 into main Nov 16, 2024
29 checks passed
@dependabot dependabot bot deleted the dependabot/cargo/cargo-dependencies-847d3ff1cd branch November 16, 2024 18:23
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.

1 participant