Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
7 changes: 6 additions & 1 deletion vortex/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,12 @@ 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"]
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"]
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