Crates.io | fast-walker |
lib.rs | fast-walker |
version | 0.2.1 |
source | src |
created_at | 2023-03-21 10:21:39.34166 |
updated_at | 2023-12-26 16:22:36.774475 |
description | Multi-threaded directory walker, with async support |
homepage | |
repository | https://github.com/oovm/fast-walker |
max_upload_size | |
id | 816075 |
size | 20,956 |
let plan = WalkPlan::new(root)
.reject_if(|path, _| path.starts_with("."));
for item in plan.into_iter().take(10) {
println!("{:?}", item);
}