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

Bump the cargo group across 5 directories with 11 updates #58

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

dependabot[bot]
Copy link

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

Bumps the cargo group with 8 updates in the /packages/cubejs-backend-native directory:

Package From To
regex 1.10.2 1.10.6
bumpalo 3.14.0 3.16.0
crossbeam-utils 0.8.17 0.8.20
lru 0.12.1 0.12.4
lz4-sys 1.9.4 1.10.0
memoffset 0.9.0 0.9.1
quinn-proto 0.11.3 0.11.8
whoami 1.4.1 1.5.2

Bumps the cargo group with 4 updates in the /rust/cubenativeutils directory: regex, lru, lz4-sys and quinn-proto.
Bumps the cargo group with 6 updates in the /rust/cubesql directory:

Package From To
bumpalo 3.9.1 3.16.0
crossbeam-utils 0.8.8 0.8.20
lru 0.12.1 0.12.4
lz4-sys 1.9.4 1.10.0
quinn-proto 0.11.3 0.11.8
crossbeam-channel 0.5.4 0.5.13

Bumps the cargo group with 4 updates in the /rust/cubesqlplanner directory: regex, lru, lz4-sys and quinn-proto.
Bumps the cargo group with 7 updates in the /rust/cubestore directory:

Package From To
regex 1.5.4 1.5.5
bumpalo 3.7.0 3.11.1
flatbuffers 23.1.21 24.3.25
lru 0.6.6 0.7.1
lz4-sys 1.9.2 1.10.0
quinn-proto 0.11.6 0.11.8
shlex 1.0.0 1.3.0

Updates regex from 1.10.2 to 1.10.6

Changelog

Sourced from regex's changelog.

1.10.6 (2024-08-02)

This is a new patch release with a fix for the unstable crate feature that enables std::str::Pattern trait integration.

Bug fixes:

1.10.5 (2024-06-09)

This is a new patch release with some minor fixes.

Bug fixes:

1.10.4 (2024-03-22)

This is a new patch release with some minor fixes.

1.10.3 (2024-01-21)

This is a new patch release that fixes the feature configuration of optional dependencies, and fixes an unsound use of bounds check elision.

Bug fixes:

Commits

Updates bumpalo from 3.14.0 to 3.16.0

Changelog

Sourced from bumpalo's changelog.

3.16.0

Released 2024-04-08.

Added

  • Added an optional, off-by-default dependency on the serde crate. Enabling this dependency allows you to serialize Bumpalo's collection and box types. Deserialization is not implemented, due to constraints of the deserialization trait.

3.15.4

Released 2024-03-07.

Added

  • Added the bumpalo::collections::Vec::extend_from_slices_copy method, which is a faster way to extend a vec from multiple slices when the element is Copy than calling extend_from_slice_copy N times.

3.15.3

Released 2024-02-22.

Added

  • Added additional performance improvements to bumpalo::collections::Vec related to reserving capacity.

3.15.2

Released 2024-02-21.

Added

  • Add a bumpalo::collections::Vec::extend_from_slice_copy method. This doesn't exist on the standard library's Vec but they have access to specialization, so their regular extend_from_slice has a specialization for Copy types. Using this new method for Copy types is a ~80x performance improvement over the plain extend_from_slice method.

... (truncated)

Commits
  • 4eeab88 Bump to version 3.16.0
  • d746a56 add serde serialization support (#210)
  • 49c5a71 Bump to version 3.15.4
  • 6a91333 Adds Vec::extend_from_slices_copy that accepts multiple slices (#240)
  • 2ed8718 Bump to 3.15.3
  • 1803cca Modifies RawVec reserve fn structure to improve inlining (#239)
  • 2ffdfb3 Bump to version 3.15.2
  • 54c88f0 Provides implementation of Vec::extend_from_slice optimized for T: Copy (...
  • f8597ce Fix MSRV in Cargo.toml; bump to version 3.15.1
  • bb660a3 Bump to version 3.15.0
  • Additional commits viewable in compare view

Updates crossbeam-utils from 0.8.17 to 0.8.20

Release notes

Sourced from crossbeam-utils's releases.

crossbeam-utils 0.8.20

  • Implement Display for CachePadded. (#1097)

crossbeam-utils 0.8.19

  • Remove dependency on cfg-if. (#1072)

crossbeam-utils 0.8.18

  • Relax the minimum supported Rust version to 1.60. (#1056)
  • Improve scalability of AtomicCell fallback. (#1055)
Commits
  • 3f5d51f Prepare for the next release
  • a9d236c Use setup-cross-toolchain-action instead of cross
  • 4a514f4 Address unexpected_cfgs warning
  • 91edb88 Add select_biased! macro (#1040)
  • d1ab079 Fix clippy::assigning_clones warning
  • 3045680 ci: Set timeout-minutes in all jobs
  • 1dc72c8 Revert "ci: Pin nightly toolchain for sanitizers to nightly-2024-03-13"
  • 39417a5 ci: Use taiki-e/checkout-action action
  • 120a6dd Run cargo-careful in CI
  • 2b06585 impl Display for CachePadded<T> (#1097)
  • Additional commits viewable in compare view

Updates lru from 0.12.1 to 0.12.4

Changelog

Sourced from lru's changelog.

v0.12.4 - 2024-07-30

  • Add methods that take a reference to the key that should be inserted.

v0.12.3 - 2024-02-24

  • Add get_key_value_mut method.

v0.12.2 - 2024-01-28

  • Add clone method.
Commits
  • d5b98fd Merge pull request #201 from jeromefroe/jerome/prepare-0-12-4-release
  • 4fb1543 Prepare 0.12.4 release
  • 5f69ef1 Merge pull request #199 from lufte/master
  • 9ff163d Create versions of get_or_insert that don't move the key
  • 16571e0 Merge pull request #200 from jeromefroe/jerome/remove-core-usize
  • 824755c Remove core::usize
  • 339020e Merge pull request #197 from jeromefroe/jerome/prepare-0-12-3-release
  • 64bf47e Prepare 0.12.3 release
  • 770dcca Merge pull request #195 from gcsbt/get_key_value_mut
  • b18e772 Merge pull request #196 from gcsbt/clippy-needless-lifetimes
  • Additional commits viewable in compare view

Updates lz4-sys from 1.9.4 to 1.10.0

Changelog

Sourced from lz4-sys's changelog.

1.26.0:

  • Update to lz4 1.10.0

1.25.0:

  • Add content_size setting to Lz4FrameInfo
  • Add LZ4_setStreamDecode
  • Docs updates

1.24.0:

  • Update to lz4 1.9.4 (lz4-sys 1.9.4) - this fixes CVE-2021-3520, which was a security vulnerability in the core lz4 library
  • export the include directory of lz4 from build.rs

1.23.3 (March 5, 2022):

  • Update lz4 to 1.9.3
  • Add [de]compress_to_buffer to block API to allow reusing buffers (#16)
  • Windows static lib support
  • Support favor_dec_speed
  • Misc small fixes

1.23.2:

  • Update lz4 to 1.9.2
  • Remove dependency on skeptic (replace with build-dependency docmatic for README testing)
  • Move to Rust 2018 edition

1.23.0:

  • Update lz4 to v1.8.2
  • Add lz4 block mode api

1.22.0:

  • Update lz4 to v1.8.0
  • Remove lz4 redundant dependency to gcc #22 (thanks to Xidorn Quan)

1.21.1:

  • Fix always rebuild issue #21

1.21.0:

  • Fix smallest 11-byte stream decoding (thanks to Niklas Hambüchen)
  • Update lz4 to v1.7.5

1.20.0:

  • Split out separate sys package #16 (thanks to Thijs Cadier)

1.19.173:

  • Update lz4 to v1.7.3

... (truncated)

Commits

Updates memoffset from 0.9.0 to 0.9.1

Changelog

Sourced from memoffset's changelog.

v0.9.1 (26/03/2024)

Added

  • Added changelog

Changed

  • Clarify documentation about macro indirection
  • Turn the crate into a thin stdlib wrapper on rustc>=1.77
  • Turn unstable_offset_of and unstable_const into NOPs; they are not needed any more on recent nightlies
Commits
  • 153fc3d Version 0.9.1
  • 0ec6b3b Merge pull request #84 from RalfJung/no-nightly
  • 730bb05 MSRV tests don't need to include moving version targets
  • f1007bd offset_simple_packed works in Miri these days
  • 1053970 bring the unstable features back (but make them do nothing)
  • 637b30a remove unstable_const feature
  • a04cfb1 add CI for 1.77 decision point
  • d553d8c Merge pull request #83 from coolreader18/stable_offset_of
  • 638ee9c Remove unstable_offset_of
  • e646678 Just use core::mem::offset_of!() on rustc >= 1.77
  • Additional commits viewable in compare view

Updates quinn-proto from 0.11.3 to 0.11.8

Release notes

Sourced from quinn-proto's releases.

quinn-proto 0.11.5

What's Changed

quinn-proto 0.11.4

What's Changed

... (truncated)

Commits
  • 7c09b02 proto: bump version to 0.11.8 for release (#1981)
  • 59bccd2 Version bump quinn to enforce patched quinn-proto
  • a8ec510 proto: avoid panicking on rustls server config errors
  • c26e8cd Bump versions
  • e01609c Merge commit from fork
  • c292a3c Fix and test validation of IDCID length
  • bb02a12 fix(.github/android): use API level 26
  • 5e5cc93 fix(.github/android): pass matrix.target and increase api to v26
  • cef42cc fix(udp): typo in sendmsg error log
  • edf16a6 ci(rust.yml): add workflow testing feature permutations
  • Additional commits viewable in compare view

Updates whoami from 1.4.1 to 1.5.2

Changelog

Sourced from whoami's changelog.

[1.5.2] - 2024-09-02

Changed

  • Updated redox_syscall to 0.5
  • Replace target_os = daku with daku cfg
  • Improved repository documentation

[1.5.1] - 2024-03-09

Fixed

  • Broken link in docs

[1.5.0] - 2024-03-03

Added

  • WASI support
  • Redox support
  • Fallible functions
    • whoami::fallible::devicename()
    • whoami::fallible::devicename_os()
    • whoami::fallible::distro()
    • whoami::fallible::hostname() - notably doesn't normalize to lowercase
    • whoami::fallible::realname()
    • whoami::fallible::realname_os()
    • whoami::fallible::username()
    • whoami::fallible::username_os()
  • whoami::Language
  • whoami::Country
  • whoami::langs()
  • whoami::fallible::account()
  • whoami::fallible::account_os()
  • whoami::DesktopEnv::is_gtk()
  • whoami::DesktopEnv::is_kde()

Removed

  • Generated device names that infer casing based on the hostname when the device name is not available - now returns the hostname unchanged
  • Partial (potentially unsound) support for Android, iOS, watchOS, tvOS, Fuchsia, Haiku, Solaris, and a few others. These targets now use the "fake" implementation.

Changed

  • Deprecated whoami::distro_os()
  • Deprecated whoami::hostname()
  • Deprecated whoami::hostname_os()

... (truncated)

Commits

Updates regex from 1.10.5 to 1.10.6

Changelog

Sourced from regex's changelog.

1.10.6 (2024-08-02)

This is a new patch release with a fix for the unstable crate feature that enables std::str::Pattern trait integration.

Bug fixes:

1.10.5 (2024-06-09)

This is a new patch release with some minor fixes.

Bug fixes:

1.10.4 (2024-03-22)

This is a new patch release with some minor fixes.

1.10.3 (2024-01-21)

This is a new patch release that fixes the feature configuration of optional dependencies, and fixes an unsound use of bounds check elision.

Bug fixes:

Commits

Updates lru from 0.12.3 to 0.12.4

Changelog

Sourced from lru's changelog.

v0.12.4 - 2024-07-30

  • Add methods that take a reference to the key that should be inserted.

v0.12.3 - 2024-02-24

  • Add get_key_value_mut method.

v0.12.2 - 2024-01-28

  • Add clone method.
Commits
  • d5b98fd Merge pull request #201 from jeromefroe/jerome/prepare-0-12-4-release
  • 4fb1543 Prepare 0.12.4 release
  • 5f69ef1 Merge pull request #199 from lufte/master
  • 9ff163d Create versions of get_or_insert that don't move the key
  • 16571e0 Merge pull request #200 from jeromefroe/jerome/remove-core-usize
  • 824755c Remove core::usize
  • 339020e Merge pull request #197 from jeromefroe/jerome/prepare-0-12-3-release
  • 64bf47e Prepare 0.12.3 release
  • 770dcca Merge pull request #195 from gcsbt/get_key_value_mut
  • b18e772 Merge pull request #196 from gcsbt/clippy-needless-lifetimes
  • Additional commits viewable in compare view

Updates lz4-sys from 1.9.5 to 1.10.0

Changelog

Sourced from lz4-sys's changelog.

1.26.0:

  • Update to lz4 1.10.0

1.25.0:

  • Add content_size setting to Lz4FrameInfo
  • Add LZ4_setStreamDecode
  • Docs updates

1.24.0:

  • Update to lz4 1.9.4 (lz4-sys 1.9.4) - this fixes CVE-2021-3520, which was a security vulnerability in the core lz4 library
  • export the include directory of lz4 from build.rs

1.23.3 (March 5, 2022):

  • Update lz4 to 1.9.3
  • Add [de]compress_to_buffer to block API to allow reusing buffers (#16)
  • Windows static lib support
  • Support favor_dec_speed
  • Misc small fixes

1.23.2:

  • Update lz4 to 1.9.2
  • Remove dependency on skeptic (replace with build-dependency docmatic for README testing)
  • Move to Rust 2018 edition

1.23.0:

  • Update lz4 to v1.8.2
  • Add lz4 block mode api

1.22.0:

  • Update lz4 to v1.8.0
  • Remove lz4 redundant dependency to gcc #22 (thanks to Xidorn Quan)

1.21.1:

  • Fix always rebuild issue #21

1.21.0:

  • Fix smallest 11-byte stream decoding (thanks to Niklas Hambüchen)
  • Update lz4 to v1.7.5

1.20.0:

  • Split out separate sys package #16 (thanks to Thijs Cadier)

1.19.173:

  • Update lz4 to v1.7.3

... (truncated)

Commits

Updates quinn-proto from 0.11.3 to 0.11.8

Release notes

Sourced from quinn-proto's releases.

quinn-proto 0.11.5

What's Changed

quinn-proto 0.11.4

What's Changed

... (truncated)

Commits
  • 7c09b02 proto: bump version to 0.11.8 for release (#1981)
  • 59bccd2 Version bump quinn to enforce patched quinn-proto
  • a8ec510 proto: avoid panicking on rustls server config errors
  • c26e8cd Bump versions
  • e01609c Merge commit from fork
  • c292a3c Fix and test validation of IDCID length
  • bb02a12 fix(.github/android): use API level 26
  • 5e5cc93 fix(.github/android): pass matrix.target and increase api to v26
  • cef42cc fix(udp): typo in sendmsg error log
  • edf16a6 ci(rust.yml): add workflow testing feature permutations
  • Additional commits viewable in compare view

Updates bumpalo from 3.9.1 to 3.16.0

Changelog

Sourced from bumpalo's changelog.

3.16.0

Released 2024-04-08.

Added

  • Added an optional, off-by-default dependency on the serde crate. Enabling this dependency allows you to serialize Bumpalo's collection and box types. Deserialization is not implemented, due to constraints of the deserialization trait.

3.15.4

Released 2024-03-07.

Added

  • Added the bumpalo::collections::Vec::extend_from_slices_copy method, which is a faster way to extend a vec from multiple slices when the element is Copy than calling extend_from_slice_copy N times.

3.15.3

Released 2024-02-22.

Added

  • Added additional performance improvements to bumpalo::collections::Vec related to reserving capacity.

3.15.2

Released 2024-02-21.

Added

  • Add a bumpalo::collections::Vec::extend_from_slice_copy method. This doesn't exist on the standard library's Vec but they have access to specialization, so their regular extend_from_slice has a specialization for Copy types. Using this new method for Copy types is a ~80x performance improvement over the plain extend_from_slice method.

... (truncated)

Commits
  • 4eeab88 Bump to version 3.16.0
  • d746a56 add serde serialization support (#210)
  • 49c5a71 Bump to version 3.15.4
  • 6a91333 Adds Vec::extend_from_slices_copy that accepts multiple slices (#240)
  • 2ed8718 Bump to 3.15.3
  • 1803cca Modifies RawVec reserve fn structure to improve inlining (#239)
  • 2ffdfb3 Bump to version 3.15.2
  • 54c88f0 Provides implementation of Vec::extend_from_slice optimized for T: Copy (...
  • f8597ce Fix MSRV in Cargo.toml; bump to version 3.15.1
  • bb660a3 Bump to version 3.15.0
  • Additional commits viewable in compare view

Updates crossbeam-utils from 0.8.8 to 0.8.20

Release notes

Sourced from crossbeam-utils's releases.

crossbeam-utils 0.8.20

  • Implement Display for CachePadded. (#1097)

crossbeam-utils 0.8.19

  • Remove dependency on cfg-if. (#1072)

crossbeam-utils 0.8.18

  • Relax the minimum supported Rust version to 1.60. (#1056)
  • Improve scalability of AtomicCell fallback. (#1055)
Commits
  • 3f5d51f Prepare for the next release
  • a9d236c Use setup-cross-toolchain-action instead of cross
  • 4a514f4 Address unexpected_cfgs warning
  • 91edb88 Add select_biased! macro (#1040)
  • d1ab079 Fix clippy::assigning_clones warning
  • 3045680 ci: Set timeout-minutes in all jobs
  • 1dc72c8 Revert "ci: Pin nightly toolchain for sanitizers to nightly-2024-03-13"
  • 39417a5 ci: Use taiki-e/checkout-action action
  • 120a6dd Run cargo-careful in CI
  • 2b06585 impl Display for CachePadded<T> (#1097)
  • Additional commits viewable in compare view

Updates lru from 0.12.1 to 0.12.4

Changelog

Sourced from

Bumps the cargo group with 8 updates in the /packages/cubejs-backend-native directory:

| Package | From | To |
| --- | --- | --- |
| [regex](https://github.com/rust-lang/regex) | `1.10.2` | `1.10.6` |
| [bumpalo](https://github.com/fitzgen/bumpalo) | `3.14.0` | `3.16.0` |
| [crossbeam-utils](https://github.com/crossbeam-rs/crossbeam) | `0.8.17` | `0.8.20` |
| [lru](https://github.com/jeromefroe/lru-rs) | `0.12.1` | `0.12.4` |
| [lz4-sys](https://github.com/10xGenomics/lz4-rs) | `1.9.4` | `1.10.0` |
| [memoffset](https://github.com/Gilnaa/memoffset) | `0.9.0` | `0.9.1` |
| [quinn-proto](https://github.com/quinn-rs/quinn) | `0.11.3` | `0.11.8` |
| [whoami](https://github.com/ardaku/whoami) | `1.4.1` | `1.5.2` |

Bumps the cargo group with 4 updates in the /rust/cubenativeutils directory: [regex](https://github.com/rust-lang/regex), [lru](https://github.com/jeromefroe/lru-rs), [lz4-sys](https://github.com/10xGenomics/lz4-rs) and [quinn-proto](https://github.com/quinn-rs/quinn).
Bumps the cargo group with 6 updates in the /rust/cubesql directory:

| Package | From | To |
| --- | --- | --- |
| [bumpalo](https://github.com/fitzgen/bumpalo) | `3.9.1` | `3.16.0` |
| [crossbeam-utils](https://github.com/crossbeam-rs/crossbeam) | `0.8.8` | `0.8.20` |
| [lru](https://github.com/jeromefroe/lru-rs) | `0.12.1` | `0.12.4` |
| [lz4-sys](https://github.com/10xGenomics/lz4-rs) | `1.9.4` | `1.10.0` |
| [quinn-proto](https://github.com/quinn-rs/quinn) | `0.11.3` | `0.11.8` |
| [crossbeam-channel](https://github.com/crossbeam-rs/crossbeam) | `0.5.4` | `0.5.13` |

Bumps the cargo group with 4 updates in the /rust/cubesqlplanner directory: [regex](https://github.com/rust-lang/regex), [lru](https://github.com/jeromefroe/lru-rs), [lz4-sys](https://github.com/10xGenomics/lz4-rs) and [quinn-proto](https://github.com/quinn-rs/quinn).
Bumps the cargo group with 7 updates in the /rust/cubestore directory:

| Package | From | To |
| --- | --- | --- |
| [regex](https://github.com/rust-lang/regex) | `1.5.4` | `1.5.5` |
| [bumpalo](https://github.com/fitzgen/bumpalo) | `3.7.0` | `3.11.1` |
| [flatbuffers](https://github.com/google/flatbuffers) | `23.1.21` | `24.3.25` |
| [lru](https://github.com/jeromefroe/lru-rs) | `0.6.6` | `0.7.1` |
| [lz4-sys](https://github.com/10xGenomics/lz4-rs) | `1.9.2` | `1.10.0` |
| [quinn-proto](https://github.com/quinn-rs/quinn) | `0.11.6` | `0.11.8` |
| [shlex](https://github.com/comex/rust-shlex) | `1.0.0` | `1.3.0` |



Updates `regex` from 1.10.2 to 1.10.6
- [Release notes](https://github.com/rust-lang/regex/releases)
- [Changelog](https://github.com/rust-lang/regex/blob/master/CHANGELOG.md)
- [Commits](rust-lang/regex@1.10.2...1.10.6)

Updates `bumpalo` from 3.14.0 to 3.16.0
- [Changelog](https://github.com/fitzgen/bumpalo/blob/main/CHANGELOG.md)
- [Commits](fitzgen/bumpalo@3.14.0...3.16.0)

Updates `crossbeam-utils` from 0.8.17 to 0.8.20
- [Release notes](https://github.com/crossbeam-rs/crossbeam/releases)
- [Changelog](https://github.com/crossbeam-rs/crossbeam/blob/master/CHANGELOG.md)
- [Commits](crossbeam-rs/crossbeam@crossbeam-utils-0.8.17...crossbeam-utils-0.8.20)

Updates `lru` from 0.12.1 to 0.12.4
- [Changelog](https://github.com/jeromefroe/lru-rs/blob/master/CHANGELOG.md)
- [Commits](jeromefroe/lru-rs@0.12.1...0.12.4)

Updates `lz4-sys` from 1.9.4 to 1.10.0
- [Release notes](https://github.com/10xGenomics/lz4-rs/releases)
- [Changelog](https://github.com/10XGenomics/lz4-rs/blob/master/CHANGELOG.md)
- [Commits](https://github.com/10xGenomics/lz4-rs/commits)

Updates `memoffset` from 0.9.0 to 0.9.1
- [Changelog](https://github.com/Gilnaa/memoffset/blob/master/CHANGELOG.md)
- [Commits](Gilnaa/memoffset@v0.9.0...v0.9.1)

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

Updates `whoami` from 1.4.1 to 1.5.2
- [Changelog](https://github.com/ardaku/whoami/blob/v1/CHANGELOG.md)
- [Commits](ardaku/whoami@v1.4.1...v1.5.2)

Updates `regex` from 1.10.5 to 1.10.6
- [Release notes](https://github.com/rust-lang/regex/releases)
- [Changelog](https://github.com/rust-lang/regex/blob/master/CHANGELOG.md)
- [Commits](rust-lang/regex@1.10.2...1.10.6)

Updates `lru` from 0.12.3 to 0.12.4
- [Changelog](https://github.com/jeromefroe/lru-rs/blob/master/CHANGELOG.md)
- [Commits](jeromefroe/lru-rs@0.12.1...0.12.4)

Updates `lz4-sys` from 1.9.5 to 1.10.0
- [Release notes](https://github.com/10xGenomics/lz4-rs/releases)
- [Changelog](https://github.com/10XGenomics/lz4-rs/blob/master/CHANGELOG.md)
- [Commits](https://github.com/10xGenomics/lz4-rs/commits)

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

Updates `bumpalo` from 3.9.1 to 3.16.0
- [Changelog](https://github.com/fitzgen/bumpalo/blob/main/CHANGELOG.md)
- [Commits](fitzgen/bumpalo@3.14.0...3.16.0)

Updates `crossbeam-utils` from 0.8.8 to 0.8.20
- [Release notes](https://github.com/crossbeam-rs/crossbeam/releases)
- [Changelog](https://github.com/crossbeam-rs/crossbeam/blob/master/CHANGELOG.md)
- [Commits](crossbeam-rs/crossbeam@crossbeam-utils-0.8.17...crossbeam-utils-0.8.20)

Updates `lru` from 0.12.1 to 0.12.4
- [Changelog](https://github.com/jeromefroe/lru-rs/blob/master/CHANGELOG.md)
- [Commits](jeromefroe/lru-rs@0.12.1...0.12.4)

Updates `lz4-sys` from 1.9.4 to 1.10.0
- [Release notes](https://github.com/10xGenomics/lz4-rs/releases)
- [Changelog](https://github.com/10XGenomics/lz4-rs/blob/master/CHANGELOG.md)
- [Commits](https://github.com/10xGenomics/lz4-rs/commits)

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

Updates `crossbeam-channel` from 0.5.4 to 0.5.13
- [Release notes](https://github.com/crossbeam-rs/crossbeam/releases)
- [Changelog](https://github.com/crossbeam-rs/crossbeam/blob/master/CHANGELOG.md)
- [Commits](crossbeam-rs/crossbeam@crossbeam-channel-0.5.4...crossbeam-channel-0.5.13)

Updates `regex` from 1.10.5 to 1.10.6
- [Release notes](https://github.com/rust-lang/regex/releases)
- [Changelog](https://github.com/rust-lang/regex/blob/master/CHANGELOG.md)
- [Commits](rust-lang/regex@1.10.2...1.10.6)

Updates `lru` from 0.12.3 to 0.12.4
- [Changelog](https://github.com/jeromefroe/lru-rs/blob/master/CHANGELOG.md)
- [Commits](jeromefroe/lru-rs@0.12.1...0.12.4)

Updates `lz4-sys` from 1.9.5 to 1.10.0
- [Release notes](https://github.com/10xGenomics/lz4-rs/releases)
- [Changelog](https://github.com/10XGenomics/lz4-rs/blob/master/CHANGELOG.md)
- [Commits](https://github.com/10xGenomics/lz4-rs/commits)

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

Updates `regex` from 1.5.4 to 1.5.5
- [Release notes](https://github.com/rust-lang/regex/releases)
- [Changelog](https://github.com/rust-lang/regex/blob/master/CHANGELOG.md)
- [Commits](rust-lang/regex@1.10.2...1.10.6)

Updates `bumpalo` from 3.7.0 to 3.11.1
- [Changelog](https://github.com/fitzgen/bumpalo/blob/main/CHANGELOG.md)
- [Commits](fitzgen/bumpalo@3.14.0...3.16.0)

Updates `flatbuffers` from 23.1.21 to 24.3.25
- [Release notes](https://github.com/google/flatbuffers/releases)
- [Changelog](https://github.com/google/flatbuffers/blob/master/CHANGELOG.md)
- [Commits](google/flatbuffers@v23.1.21...v24.3.25)

Updates `lru` from 0.6.6 to 0.7.1
- [Changelog](https://github.com/jeromefroe/lru-rs/blob/master/CHANGELOG.md)
- [Commits](jeromefroe/lru-rs@0.12.1...0.12.4)

Updates `lz4-sys` from 1.9.2 to 1.10.0
- [Release notes](https://github.com/10xGenomics/lz4-rs/releases)
- [Changelog](https://github.com/10XGenomics/lz4-rs/blob/master/CHANGELOG.md)
- [Commits](https://github.com/10xGenomics/lz4-rs/commits)

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

Updates `shlex` from 1.0.0 to 1.3.0
- [Changelog](https://github.com/comex/rust-shlex/blob/master/CHANGELOG.md)
- [Commits](https://github.com/comex/rust-shlex/commits)

---
updated-dependencies:
- dependency-name: regex
  dependency-type: direct:production
  dependency-group: cargo
- dependency-name: bumpalo
  dependency-type: indirect
  dependency-group: cargo
- dependency-name: crossbeam-utils
  dependency-type: indirect
  dependency-group: cargo
- dependency-name: lru
  dependency-type: indirect
  dependency-group: cargo
- dependency-name: lz4-sys
  dependency-type: indirect
  dependency-group: cargo
- dependency-name: memoffset
  dependency-type: indirect
  dependency-group: cargo
- dependency-name: quinn-proto
  dependency-type: indirect
  dependency-group: cargo
- dependency-name: whoami
  dependency-type: indirect
  dependency-group: cargo
- dependency-name: regex
  dependency-type: indirect
  dependency-group: cargo
- dependency-name: lru
  dependency-type: indirect
  dependency-group: cargo
- dependency-name: lz4-sys
  dependency-type: indirect
  dependency-group: cargo
- dependency-name: quinn-proto
  dependency-type: indirect
  dependency-group: cargo
- dependency-name: bumpalo
  dependency-type: indirect
  dependency-group: cargo
- dependency-name: crossbeam-utils
  dependency-type: indirect
  dependency-group: cargo
- dependency-name: lru
  dependency-type: direct:production
  dependency-group: cargo
- dependency-name: lz4-sys
  dependency-type: indirect
  dependency-group: cargo
- dependency-name: quinn-proto
  dependency-type: indirect
  dependency-group: cargo
- dependency-name: crossbeam-channel
  dependency-type: indirect
  dependency-group: cargo
- dependency-name: regex
  dependency-type: indirect
  dependency-group: cargo
- dependency-name: lru
  dependency-type: indirect
  dependency-group: cargo
- dependency-name: lz4-sys
  dependency-type: indirect
  dependency-group: cargo
- dependency-name: quinn-proto
  dependency-type: indirect
  dependency-group: cargo
- dependency-name: regex
  dependency-type: direct:production
  dependency-group: cargo
- dependency-name: bumpalo
  dependency-type: direct:production
  dependency-group: cargo
- dependency-name: flatbuffers
  dependency-type: direct:production
  dependency-group: cargo
- dependency-name: lru
  dependency-type: direct:production
  dependency-group: cargo
- dependency-name: lz4-sys
  dependency-type: indirect
  dependency-group: cargo
- dependency-name: quinn-proto
  dependency-type: indirect
  dependency-group: cargo
- dependency-name: shlex
  dependency-type: indirect
  dependency-group: cargo
...

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 3, 2024
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.

0 participants