par_io 0.4.2

Parallel, async file I/O library with control over memory usage with no dependencies.
Documentation
1
2
3
4
5
6
7
//! Read/write data at offset from/to files, conditionally including UNIX/Windows
//! implementations.
#[cfg(any(unix))]
pub mod io_at_unix;

#[cfg(any(windows))]
pub mod io_at_windows;