vortex-layout 0.44.1

Vortex layouts provide a way to perform lazy push-down scans over abstract storage
Documentation
[package]
name = "vortex-layout"
authors = { workspace = true }
categories = { workspace = true }
description = "Vortex layouts provide a way to perform lazy push-down scans over abstract storage"
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 }

[dependencies]
arcref = { workspace = true }
arrow-array = { workspace = true }
arrow-buffer = { workspace = true }
arrow-schema = { workspace = true }
async-stream = { workspace = true }
async-trait = { workspace = true }
bit-vec = { workspace = true }
dashmap = { workspace = true }
flatbuffers = { workspace = true }
futures = { workspace = true, features = ["alloc", "async-await", "executor"] }
getrandom_v03 = { workspace = true }
itertools = { workspace = true }
log = { workspace = true }
once_cell = { workspace = true, features = ["parking_lot"] }
parking_lot = { workspace = true }
paste = { workspace = true }
pco = { workspace = true }
pin-project-lite = { workspace = true }
prost = { workspace = true }
roaring = { workspace = true, optional = true }
sketches-ddsketch = { workspace = true }
tokio = { workspace = true, features = ["rt"], optional = true }
tracing = { workspace = true, optional = true }
vortex-array = { workspace = true }
vortex-btrblocks = { workspace = true }
vortex-buffer = { workspace = true }
vortex-dict = { workspace = true }
vortex-dtype = { workspace = true }
vortex-error = { workspace = true }
vortex-expr = { workspace = true }
vortex-flatbuffers = { workspace = true, features = ["layout"] }
vortex-mask = { workspace = true }
vortex-metrics = { workspace = true }
vortex-pco = { workspace = true }
vortex-scalar = { workspace = true }
vortex-sequence = { workspace = true }
vortex-utils = { workspace = true }
vortex-zstd = { workspace = true, optional = true }

[dev-dependencies]
futures = { workspace = true, features = ["executor"] }
rstest = { workspace = true }
tokio = { workspace = true, features = ["rt", "macros"] }
vortex-layout = { path = ".", features = ["tokio"] }

[features]
roaring = ["dep:roaring"]
tokio = ["dep:tokio", "vortex-error/tokio", "tracing"]
zstd = ["dep:vortex-zstd"]

[lints]
workspace = true