mirror of
https://github.com/quickwit-oss/tantivy.git
synced 2025-12-23 02:29:57 +00:00
* update common to edition 2024 * update bitpacker to edition 2024 * update stacker to edition 2024 * update query-grammar to edition 2024 * update sstable to edition 2024 + fmt * fmt * update columnar to edition 2024 * cargo fmt * use None instead of _
39 lines
930 B
TOML
39 lines
930 B
TOML
[package]
|
|
name = "tantivy-columnar"
|
|
version = "0.3.0"
|
|
edition = "2024"
|
|
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.14.0"
|
|
fastdivide = "0.4.0"
|
|
|
|
stacker = { version= "0.3", path = "../stacker", package="tantivy-stacker"}
|
|
sstable = { version= "0.3", path = "../sstable", package = "tantivy-sstable" }
|
|
common = { version= "0.7", path = "../common", package = "tantivy-common" }
|
|
tantivy-bitpacker = { version= "0.6", path = "../bitpacker/" }
|
|
serde = "1.0.152"
|
|
downcast-rs = "2.0.1"
|
|
|
|
[dev-dependencies]
|
|
proptest = "1"
|
|
more-asserts = "0.3.1"
|
|
rand = "0.8"
|
|
binggan = "0.14.0"
|
|
|
|
[[bench]]
|
|
name = "bench_merge"
|
|
harness = false
|
|
|
|
[[bench]]
|
|
name = "bench_access"
|
|
harness = false
|
|
|
|
|
|
[features]
|
|
unstable = []
|