mirror of
https://github.com/quickwit-oss/tantivy.git
synced 2026-01-06 17:22:54 +00:00
use usize in bitpacker to enable larger columns in the columnar store Godbolt comparison with u32 vs u64 for get access: https://godbolt.org/z/cjf7nenYP Add a mini-tool to inspect columnar files created by tantivy. (very basic functionality which can be extended later)
19 lines
371 B
TOML
19 lines
371 B
TOML
[package]
|
|
name = "tantivy-columnar-inspect"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
license = "MIT"
|
|
|
|
[dependencies]
|
|
tantivy = {path="../..", package="tantivy"}
|
|
columnar = {path="../", package="tantivy-columnar"}
|
|
common = {path="../../common", package="tantivy-common"}
|
|
|
|
[workspace]
|
|
members = []
|
|
|
|
[profile.release]
|
|
debug = true
|
|
#debug-assertions = true
|
|
#overflow-checks = true
|