mirror of
https://github.com/quickwit-oss/tantivy.git
synced 2026-01-05 16:52:55 +00:00
Introduced asymetric OptionalCodec / SerializableOptionalCodec Removed cardinality from the columnar sstable. Added DynamicColumn Reorganized all files Change DenseCodec serialization logic. Renamed methods to rank/select Moved versioning footer to the columnar level
33 lines
721 B
TOML
33 lines
721 B
TOML
[package]
|
|
name = "tantivy-columnar"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
license = "MIT"
|
|
|
|
[dependencies]
|
|
stacker = { path = "../stacker", package="tantivy-stacker"}
|
|
serde_json = "1"
|
|
thiserror = "1"
|
|
fnv = "1"
|
|
sstable = { path = "../sstable", package = "tantivy-sstable" }
|
|
common = { path = "../common", package = "tantivy-common" }
|
|
itertools = "0.10"
|
|
log = "0.4"
|
|
tantivy-bitpacker = { version= "0.3", path = "../bitpacker/" }
|
|
prettytable-rs = {version="0.10.0", optional= true}
|
|
rand = {version="0.8.3", optional= true}
|
|
fastdivide = "0.4"
|
|
measure_time = { version="0.8.2", optional=true}
|
|
|
|
[dev-dependencies]
|
|
proptest = "1"
|
|
more-asserts = "0.3.0"
|
|
rand = "0.8.3"
|
|
|
|
# temporary
|
|
[workspace]
|
|
members = []
|
|
|
|
[features]
|
|
unstable = []
|