diff --git a/Cargo.toml b/Cargo.toml index 0efb79d5fd..b9586eebae 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 dd6819a25c..763cb6a7d4 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"