mirror of
https://github.com/quickwit-oss/tantivy.git
synced 2026-01-08 18:12:55 +00:00
* Added support for dynamic fast field. See README for more information. * Apply suggestions from code review Co-authored-by: PSeitz <PSeitz@users.noreply.github.com>
19 lines
434 B
TOML
19 lines
434 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" }
|
|
fastfield_codecs = { path = "../fastfield_codecs"}
|
|
itertools = "0.10"
|
|
|
|
[dev-dependencies]
|
|
proptest = "1"
|