From 97f201e84121c88fba918001adbd7ce5050df946 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 11 Sep 2026 00:53:45 +0000 Subject: [PATCH] chore(deps): update zstd requirement from 0.13.3 to 0.14.0 Updates the requirements on [zstd](https://github.com/gyscos/zstd-rs) to permit the latest version. - [Release notes](https://github.com/gyscos/zstd-rs/releases) - [Commits](https://github.com/gyscos/zstd-rs/compare/v0.13.3...v0.14.0) --- updated-dependencies: - dependency-name: zstd dependency-version: 0.14.0 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- ffi-bench/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ffi-bench/Cargo.toml b/ffi-bench/Cargo.toml index 9e7a8e0c7..93df8e1d5 100644 --- a/ffi-bench/Cargo.toml +++ b/ffi-bench/Cargo.toml @@ -28,7 +28,7 @@ path = "src/lib.rs" # in per-target via `required-features` below, so a bench built in isolation # (`cargo bench --bench compare_ffi`) never links them. structured-zstd = { version = "0.0", path = "../zstd", features = ["dict-builder"] } -zstd = { version = "0.13.3", features = ["zdict_builder", "experimental"] } +zstd = { version = "0.14.0", features = ["zdict_builder", "experimental"] } criterion = "0.8" rand = "0.10" dhat = "0.3"