vortex 0.52.0

Vortex file format with all builtin codecs and a sampling compressor.
Documentation
[package]
name = "vortex"
authors = { workspace = true }
categories = { workspace = true }
description = "Vortex file format with all builtin codecs and a sampling compressor."
edition = { workspace = true }
homepage = { workspace = true }
include = { workspace = true }
keywords = { workspace = true }
license = { workspace = true }
readme = { workspace = true }
repository = { workspace = true }
rust-version = { workspace = true }
version = { workspace = true }

[lints]
workspace = true

[dependencies]
vortex-alp = { workspace = true }
vortex-array = { workspace = true }
vortex-btrblocks = { workspace = true }
vortex-buffer = { workspace = true }
vortex-bytebool = { workspace = true }
vortex-datetime-parts = { workspace = true }
vortex-decimal-byte-parts = { workspace = true }
vortex-dict = { workspace = true, features = ["arrow"] }
vortex-dtype = { workspace = true, default-features = true }
vortex-error = { workspace = true }
vortex-expr = { workspace = true }
vortex-fastlanes = { workspace = true }
vortex-file = { workspace = true, optional = true, default-features = true }
vortex-flatbuffers = { workspace = true }
vortex-fsst = { workspace = true }
vortex-ipc = { workspace = true }
vortex-layout = { workspace = true }
vortex-mask = { workspace = true }
vortex-metrics = { workspace = true }
vortex-pco = { workspace = true }
vortex-proto = { workspace = true, default-features = true }
vortex-runend = { workspace = true, features = ["arrow"] }
vortex-scalar = { workspace = true }
vortex-scan = { workspace = true }
vortex-sequence = { workspace = true }
vortex-sparse = { workspace = true }
vortex-utils = { workspace = true }
vortex-zigzag = { workspace = true }
vortex-zstd = { workspace = true, optional = true }

[dev-dependencies]
anyhow = { workspace = true }
arrow-array = { workspace = true }
divan = { workspace = true }
itertools = { workspace = true }
mimalloc = { workspace = true }
parquet = { workspace = true }
rand = { workspace = true }
tokio = { workspace = true, features = ["full"] }
vortex = { path = ".", features = ["tokio"] }

[features]
default = ["files", "zstd"]
files = ["dep:vortex-file"]
memmap2 = ["vortex-buffer/memmap2"]
object_store = ["vortex-file/object_store"]
python = ["vortex-error/python"]
tokio = ["vortex-file/tokio", "vortex-scan/tokio"]
zstd = ["dep:vortex-zstd", "vortex-file/zstd", "vortex-layout/zstd"]
pretty = ["vortex-array/table-display"]

[[bench]]
name = "single_encoding_throughput"
harness = false
test = false