mirror of
https://github.com/quickwit-oss/tantivy.git
synced 2026-01-06 09:12:55 +00:00
* handle ip adresses in term aggregation Stores IpAdresses during the segment term aggregation via u64 representation and convert to u128(IpV6Adress) via downcast when converting to intermediate results. Enable Downcasting on `ColumnValues` Expose u64 variant for u128 encoded data via `open_u64_lenient` method. Remove lifetime in VecColumn, to avoid 'static lifetime requirement coming from downcast trait. * rename method
29 lines
813 B
TOML
29 lines
813 B
TOML
[package]
|
|
name = "tantivy-columnar"
|
|
version = "0.2.0"
|
|
edition = "2021"
|
|
license = "MIT"
|
|
homepage = "https://github.com/quickwit-oss/tantivy"
|
|
repository = "https://github.com/quickwit-oss/tantivy"
|
|
description = "column oriented storage for tantivy"
|
|
categories = ["database-implementations", "data-structures", "compression"]
|
|
|
|
[dependencies]
|
|
itertools = "0.12.0"
|
|
fastdivide = "0.4.0"
|
|
|
|
stacker = { version= "0.2", path = "../stacker", package="tantivy-stacker"}
|
|
sstable = { version= "0.2", path = "../sstable", package = "tantivy-sstable" }
|
|
common = { version= "0.6", path = "../common", package = "tantivy-common" }
|
|
tantivy-bitpacker = { version= "0.5", path = "../bitpacker/" }
|
|
serde = "1.0.152"
|
|
downcast-rs = "1.2.0"
|
|
|
|
[dev-dependencies]
|
|
proptest = "1"
|
|
more-asserts = "0.3.1"
|
|
rand = "0.8"
|
|
|
|
[features]
|
|
unstable = []
|