From 24841f0b2ab214a691ea27d64d69a68e53a77321 Mon Sep 17 00:00:00 2001 From: PSeitz Date: Fri, 1 Dec 2023 13:45:52 +0100 Subject: [PATCH] update bitpacker dep (#2269) --- Cargo.toml | 2 +- bitpacker/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 7bb412a7c..05bf2a095 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -37,7 +37,7 @@ uuid = { version = "1.0.0", features = ["v4", "serde"] } crossbeam-channel = "0.5.4" rust-stemmers = "1.2.0" downcast-rs = "1.2.0" -bitpacking = { git = "https://github.com/quickwit-oss/bitpacking", rev = "f730b75", default-features = false, features = ["bitpacker4x"] } +bitpacking = { version = "0.9.2", default-features = false, features = ["bitpacker4x"] } census = "0.4.0" rustc-hash = "1.1.0" thiserror = "1.0.30" diff --git a/bitpacker/Cargo.toml b/bitpacker/Cargo.toml index 7b1283293..b1e7db021 100644 --- a/bitpacker/Cargo.toml +++ b/bitpacker/Cargo.toml @@ -15,7 +15,7 @@ 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"]} +bitpacking = { version = "0.9.2", default-features = false, features = ["bitpacker1x"] } [dev-dependencies] rand = "0.8"