diff --git a/Cargo.lock b/Cargo.lock index 31c3276bcf..3bdffcf8c3 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -5118,6 +5118,7 @@ dependencies = [ "criterion", "flatbuffers", "flatc", + "futures", "itertools 0.12.1", "log", "monoio", diff --git a/vortex-ipc/src/reader.rs b/vortex-ipc/src/reader.rs index 5ddc79685a..71d5031a36 100644 --- a/vortex-ipc/src/reader.rs +++ b/vortex-ipc/src/reader.rs @@ -17,6 +17,7 @@ use vortex::stats::{ArrayStatistics, Stat}; use vortex::{ Array, ArrayDType, ArrayView, Context, IntoArray, OwnedArray, ToArray, ToStatic, ViewContext, }; +use vortex_buffer::Buffer; use vortex_dtype::{match_each_integer_ptype, DType}; use vortex_error::{vortex_bail, vortex_err, VortexError, VortexResult}; use vortex_flatbuffers::ReadFlatBuffer;