scanner-walker 0.2.3

Filesystem walking and filtering used by scanner-core.
Documentation
1
2
3
4
5
6
7
8
9
//! Parallel directory traversal with `.gitignore` / `.ignore` and custom overrides.

mod checkpoint;
mod filter;
mod walk;

pub use checkpoint::Checkpoint;
pub use filter::{config_hash, FilterOptions};
pub use walk::{walk_roots_fn, WalkError, WalkMode, WalkOutcome};