mirror of
https://github.com/quickwit-oss/tantivy.git
synced 2026-01-04 00:02:55 +00:00
* Faster range queries This PR does several changes - ip compact space now uses u32 - the bitunpacker now gets a get_batch function - we push down range filtering, removing GCD / shift in the bitpacking codec. - we rely on AVX2 routine to do the filtering. * Apply suggestions from code review * Apply suggestions from code review * CR comments
23 lines
649 B
TOML
23 lines
649 B
TOML
[package]
|
|
name = "tantivy-bitpacker"
|
|
version = "0.3.0"
|
|
edition = "2021"
|
|
authors = ["Paul Masurel <paul.masurel@gmail.com>"]
|
|
license = "MIT"
|
|
categories = []
|
|
description = """Tantivy-sub crate: bitpacking"""
|
|
repository = "https://github.com/quickwit-oss/tantivy"
|
|
keywords = []
|
|
documentation = "https://docs.rs/tantivy-bitpacker/latest/tantivy_bitpacker"
|
|
homepage = "https://github.com/quickwit-oss/tantivy"
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
bitpacking = {version="0.8", default-features=false, features = ["bitpacker1x"]}
|
|
|
|
[dev-dependencies]
|
|
rand = "0.8"
|
|
proptest = "1"
|