async-walk

Crates.ioasync-walk
lib.rsasync-walk
version0.1.0
sourcesrc
created_at2020-07-29 04:22:08.893585
updated_at2020-07-29 04:22:08.893585
descriptionA concurrent fs walk library built on top of tokio
homepage
repository
max_upload_size
id270832
size23,640
Ryl (rylio)

documentation

README

async-walk

A concurrent fs walk library built on top of tokio.

Usage

use async_walk::WalkBuilder;
let walk = WalkBuilder::new(TEST_DIR).build();
walk.for_each(|entry| async {
    println!("{:?}", entry.path());
});

License

async-walk is currently licensed under the MIT license. See LICENSE for more details.

Commit count: 0

cargo fmt