fast-walker

Crates.iofast-walker
lib.rsfast-walker
version0.2.1
sourcesrc
created_at2023-03-21 10:21:39.34166
updated_at2023-12-26 16:22:36.774475
descriptionMulti-threaded directory walker, with async support
homepage
repositoryhttps://github.com/oovm/fast-walker
max_upload_size
id816075
size20,956
SasakiSaki (oovm)

documentation

https://docs.rs/fast-walker

README

let plan = WalkPlan::new(root)
    .reject_if(|path, _| path.starts_with("."));
for item in plan.into_iter().take(10) {
    println!("{:?}", item);
}
Commit count: 13

cargo fmt