mirror of
https://github.com/quickwit-oss/tantivy.git
synced 2025-12-22 18:19:58 +00:00
* chore: Release * chore: Release --------- Co-authored-by: Pascal Seitz <pascal.seitz@datadoghq.com>
38 lines
972 B
TOML
38 lines
972 B
TOML
[package]
|
|
name = "tantivy-sstable"
|
|
version = "0.5.0"
|
|
edition = "2024"
|
|
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.9", path="../common", package="tantivy-common"}
|
|
futures-util = "0.3.30"
|
|
itertools = "0.14.0"
|
|
tantivy-bitpacker = { version= "0.8", path="../bitpacker" }
|
|
tantivy-fst = "0.5"
|
|
# experimental gives us access to Decompressor::upper_bound
|
|
zstd = { version = "0.13", optional = true, features = ["experimental"] }
|
|
|
|
[features]
|
|
zstd-compression = ["zstd"]
|
|
|
|
[dev-dependencies]
|
|
proptest = "1"
|
|
criterion = { version = "0.5", default-features = false }
|
|
names = "0.14"
|
|
rand = "0.8"
|
|
|
|
[[bench]]
|
|
name = "stream_bench"
|
|
harness = false
|
|
|
|
[[bench]]
|
|
name = "ord_to_term"
|
|
harness = false
|
|
|