vortex-io 0.56.0

Core async and blocking IO traits and implementations, used by IPC and file format
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
// SPDX-License-Identifier: Apache-2.0
// SPDX-FileCopyrightText: Copyright the Vortex contributors

mod buffer;
mod driver;
#[cfg(feature = "object_store")]
pub mod object_store;
mod read;
#[cfg(all(unix, not(target_arch = "wasm32")))]
mod std_file;

pub(crate) use driver::*;
pub use read::*;