#walk #tokio #built #top #fs #async #concurrency

async-walk

A concurrent fs walk library built on top of tokio

1 unstable release

0.1.0 Jul 29, 2020

#30 in #walk

MIT license

22KB
492 lines

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.

Dependencies

~4.5MB
~70K SLoC