tokio-fs-ext 0.0.2

Extend tokio fs to be compatible with native and wasm
Documentation
1
2
3
4
5
use std::{fs::Metadata, io, path::Path};

pub async fn metadata(_path: impl AsRef<Path>) -> io::Result<Metadata> {
    todo!()
}