tokio-fs-ext 0.0.8

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

pub async fn symlink(_original: impl AsRef<Path>, _link: impl AsRef<Path>) -> io::Result<()> {
    todo!()
}