Skip to content

Commit

Permalink
update fst (#2267)
Browse files Browse the repository at this point in the history
update fst to 0.5 (deduplicates regex-syntax in the dep tree)
deps cleanup
  • Loading branch information
PSeitz authored Nov 21, 2023
1 parent daad2dc commit 07573a7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ crc32fast = "1.3.2"
once_cell = "1.10.0"
regex = { version = "1.5.5", default-features = false, features = ["std", "unicode"] }
aho-corasick = "1.0"
tantivy-fst = "0.4.0"
tantivy-fst = "0.5"
memmap2 = { version = "0.9.0", optional = true }
lz4_flex = { version = "0.11", default-features = false, optional = true }
zstd = { version = "0.13", optional = true, default-features = false }
Expand Down Expand Up @@ -79,7 +79,7 @@ more-asserts = "0.3.1"
rand_distr = "0.4.3"

[target.'cfg(not(windows))'.dev-dependencies]
criterion = { version = "0.5" }
criterion = { version = "0.5", default-features = false }

[dev-dependencies.fail]
version = "0.5.0"
Expand Down
4 changes: 2 additions & 2 deletions sstable/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,13 @@ description = "sstables for tantivy"

[dependencies]
common = {version= "0.6", path="../common", package="tantivy-common"}
tantivy-fst = "0.4"
tantivy-fst = "0.5"
# experimental gives us access to Decompressor::upper_bound
zstd = { version = "0.13", features = ["experimental"] }

[dev-dependencies]
proptest = "1"
criterion = "0.5"
criterion = { version = "0.5", default-features = false }
names = "0.14"
rand = "0.8"

Expand Down

0 comments on commit 07573a7

Please sign in to comment.