fast-walker 0.1.0

Multi-threaded directory walker, with async support
Documentation
1
2
3
4
5
6
7
8
9
10



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