| Crates.io | async-walk |
| lib.rs | async-walk |
| version | 0.1.0 |
| created_at | 2020-07-29 04:22:08.893585+00 |
| updated_at | 2020-07-29 04:22:08.893585+00 |
| description | A concurrent fs walk library built on top of tokio |
| homepage | |
| repository | |
| max_upload_size | |
| id | 270832 |
| size | 23,640 |
A concurrent fs walk library built on top of tokio.
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.