A concurrent fs walk library built on top of tokio.
rust
use async_walk::WalkBuilder;
let walk = WalkBuilder::new(TEST_DIR).build();
walk.for_each(|entry| async {
println!("{:?}", entry.path());
});
async-walk
is currently licensed under the MIT license. See LICENSE for more details.