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 }