[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-buffer = { workspace = true }
async-stream = { workspace = true }
async-trait = { 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 }
tokio = { workspace = true, features = ["rt"], optional = true }
tracing = { workspace = 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-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", "test-harness"] }
[features]
test-harness = []
tokio = ["dep:tokio", "vortex-error/tokio"]
zstd = ["dep:vortex-zstd"]
[lints]
workspace = true