Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 8 additions & 3 deletions vortex/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -71,9 +71,14 @@ vortex-tensor = { workspace = true }
default = ["files", "zstd"]
files = ["dep:vortex-file"]
memmap2 = ["vortex-buffer/memmap2"]
object_store = ["vortex-file/object_store", "vortex-io/object_store"]
tokio = ["vortex-file/tokio"]
zstd = ["dep:vortex-zstd", "vortex-file/zstd"]
object_store = ["vortex-file?/object_store", "vortex-io/object_store"]
tokio = [
"vortex-error/tokio",
"vortex-file?/tokio",
"vortex-io/tokio",
"vortex-layout/tokio",
]
zstd = ["dep:vortex-zstd", "vortex-file?/zstd"]
pretty = ["vortex-array/table-display"]
serde = ["vortex-array/serde", "vortex-buffer/serde", "vortex-mask/serde"]
# This feature enabled unstable encodings for which we don't guarantee stability.
Expand Down
2 changes: 1 addition & 1 deletion vortex/examples/tracing_vortex.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
//! This example demonstrates a real-world use case: implementing a `tracing` subscriber
//! that writes all log events and spans to Vortex files.
//!
//! Run with: cargo run --example tracing_vortex --features tokio
//! Run with: cargo run --example tracing_vortex --features files,tokio

#![expect(
clippy::disallowed_types,
Expand Down
Loading