tokio-fs-ext 0.6.0

Extend tokio fs to be compatible with native and wasm
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
mod dir_handle_cache;
mod error;
mod open_dir;
mod open_file;
mod options;
mod remove;
mod root;
mod virtualize;
#[cfg(feature = "opfs_watch")]
pub mod watch;

pub(super) use error::OpfsError;
pub(super) use open_dir::open_dir;
pub(super) use open_file::open_file;
pub(super) use options::{CreateFileMode, OpenDirType, SyncAccessMode};
pub(super) use remove::remove;
pub(super) use virtualize::virtualize;