io-fs 0.0.1

Set of I/O-free coroutines and runtimes to manage filesystems
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Collection of filesystem runtimes.
//!
//! A runtime contains all the I/O logic, and is responsible for
//! processing [I/O] requests emitted by [coroutines].
//!
//! If you miss a runtime matching your requirements, you can easily
//! implement your own by taking example on the existing ones. PRs are
//! welcomed!
//!
//! [I/O]: crate::io::FsIo
//! [coroutines]: crate::coroutines

#[cfg(feature = "std")]
pub mod std;
#[cfg(feature = "tokio")]
pub mod tokio;