mirror of
https://github.com/quickwit-oss/tantivy.git
synced 2026-01-08 01:52:54 +00:00
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] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
27 lines
721 B
TOML
27 lines
721 B
TOML
[package]
|
|
name = "tantivy-sstable"
|
|
version = "0.2.0"
|
|
edition = "2021"
|
|
license = "MIT"
|
|
homepage = "https://github.com/quickwit-oss/tantivy"
|
|
repository = "https://github.com/quickwit-oss/tantivy"
|
|
keywords = ["search", "information", "retrieval", "sstable"]
|
|
categories = ["database-implementations", "data-structures", "compression"]
|
|
description = "sstables for tantivy"
|
|
|
|
[dependencies]
|
|
common = {version= "0.6", path="../common", package="tantivy-common"}
|
|
tantivy-fst = "0.4"
|
|
# experimental gives us access to Decompressor::upper_bound
|
|
zstd = { version = "0.13", features = ["experimental"] }
|
|
|
|
[dev-dependencies]
|
|
proptest = "1"
|
|
criterion = "0.5"
|
|
names = "0.14"
|
|
rand = "0.8"
|
|
|
|
[[bench]]
|
|
name = "stream_bench"
|
|
harness = false
|