tokio-fs-ext 0.7.8

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::opfs_err;
pub(super) use open_dir::open_dir;
pub(super) use open_file::{lock_and_handle, open_file, resolve_file_handle};
pub(super) use options::{CreateFileMode, OpenDirType, SyncAccessMode};
pub(super) use remove::remove;
pub(super) use virtualize::virtualize;