From d9ac4f136d13f484c00ccfe6cb0e4b9e6d0f6bfe Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 16 Jul 2026 18:56:05 +0000 Subject: [PATCH] chore(deps): update lz4_flex requirement in /examples/observability-demo Updates the requirements on [lz4_flex](https://github.com/pseitz/lz4_flex) to permit the latest version. - [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.13.1...0.14.0) --- updated-dependencies: - dependency-name: lz4_flex dependency-version: 0.14.0 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- core/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/Cargo.toml b/core/Cargo.toml index 8950e64..c64950e 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -287,7 +287,7 @@ getrandom = { version = "0.4", optional = true } bitflags = { version = "2.13", optional = true } parking_lot = { version = "0.12", optional = true } # Fast mutex for buffer pool arc-swap = { version = "1", optional = true } # Lock-free atomic swap for the CryptoState rekey path (Phase 1.5) -lz4_flex = { version = "0.13.1", optional = true } # Fastest pure-Rust LZ4 (safe, no C bindings); >=0.13.1 floor avoids yanked 0.11.5 (RUSTSEC-2026-0041) +lz4_flex = { version = "0.13.1", optional = true } # Fastest pure-Rust LZ4 (safe, no C bindings); >=0.14.0 floor avoids yanked 0.11.5 (RUSTSEC-2026-0041) # zstd pinned to a release version. Optional (gated by `compression-zstd` # feature) so WASM / embedded builds can opt out of the C bindings in # zstd-sys, falling back to lz4_flex.