From 22aa4daf190e5b705e49df75df7b442f0d96d5a9 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 12 Oct 2023 04:24:44 +0200 Subject: [PATCH] Update zstd requirement from 0.12 to 0.13 (#2214) 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.12.0...v0.13.0) --- updated-dependencies: - dependency-name: zstd dependency-type: direct:production ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- Cargo.toml | 2 +- sstable/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 0efb79d5f..b9586eeba 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -25,7 +25,7 @@ aho-corasick = "1.0" tantivy-fst = "0.4.0" memmap2 = { version = "0.9.0", optional = true } lz4_flex = { version = "0.11", default-features = false, optional = true } -zstd = { version = "0.12", optional = true, default-features = false } +zstd = { version = "0.13", optional = true, default-features = false } tempfile = { version = "3.3.0", optional = true } log = "0.4.16" serde = { version = "1.0.136", features = ["derive"] } diff --git a/sstable/Cargo.toml b/sstable/Cargo.toml index dd6819a25..763cb6a7d 100644 --- a/sstable/Cargo.toml +++ b/sstable/Cargo.toml @@ -13,7 +13,7 @@ description = "sstables for tantivy" common = {version= "0.6", path="../common", package="tantivy-common"} tantivy-fst = "0.4" # experimental gives us access to Decompressor::upper_bound -zstd = { version = "0.12", features = ["experimental"] } +zstd = { version = "0.13", features = ["experimental"] } [dev-dependencies] proptest = "1"