From 95dcce8cc92307a0f6b13869e2516b757a28997a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 20 Mar 2026 08:56:10 +0000 Subject: [PATCH] chore(deps): bump lz4_flex from 0.12.1 to 0.13.0 in /native Bumps [lz4_flex](https://github.com/pseitz/lz4_flex) from 0.12.1 to 0.13.0. - [Release notes](https://github.com/pseitz/lz4_flex/releases) - [Changelog](https://github.com/PSeitz/lz4_flex/blob/main/CHANGELOG.md) - [Commits](https://github.com/pseitz/lz4_flex/compare/0.12.1...0.13.0) --- updated-dependencies: - dependency-name: lz4_flex dependency-version: 0.13.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- native/Cargo.lock | 15 ++++++++++++--- native/core/Cargo.toml | 2 +- 2 files changed, 13 insertions(+), 4 deletions(-) diff --git a/native/Cargo.lock b/native/Cargo.lock index 230fc2a535..ef3ce87ad3 100644 --- a/native/Cargo.lock +++ b/native/Cargo.lock @@ -288,7 +288,7 @@ dependencies = [ "arrow-schema", "arrow-select", "flatbuffers", - "lz4_flex", + "lz4_flex 0.12.1", ] [[package]] @@ -1855,7 +1855,7 @@ dependencies = [ "lazy_static", "log", "log4rs", - "lz4_flex", + "lz4_flex 0.13.0", "mimalloc", "num", "object_store", @@ -3957,6 +3957,15 @@ dependencies = [ "twox-hash", ] +[[package]] +name = "lz4_flex" +version = "0.13.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "db9a0d582c2874f68138a16ce1867e0ffde6c0bb0a0df85e1f36d04146db488a" +dependencies = [ + "twox-hash", +] + [[package]] name = "md-5" version = "0.10.6" @@ -4380,7 +4389,7 @@ dependencies = [ "futures", "half", "hashbrown 0.16.1", - "lz4_flex", + "lz4_flex 0.12.1", "num-bigint", "num-integer", "num-traits", diff --git a/native/core/Cargo.toml b/native/core/Cargo.toml index 44daae53ab..dc73be4438 100644 --- a/native/core/Cargo.toml +++ b/native/core/Cargo.toml @@ -51,7 +51,7 @@ prost = "0.14.3" jni = "0.21" snap = "1.1" # we disable default features in lz4_flex to force the use of the faster unsafe encoding and decoding implementation -lz4_flex = { version = "0.12.1", default-features = false, features = ["frame"] } +lz4_flex = { version = "0.13.0", default-features = false, features = ["frame"] } zstd = "0.13.3" rand = { workspace = true } num = { workspace = true }