scanner-core 0.2.3

Public facade for the Archivist filesystem scanner (scan API and FileRecord types).
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Stable public API for filesystem scanning (`ScanOptions`, `scan`, `FileRecord`, …).
//!
//! In-repo crates under `scanner/crates/*` are implementation details; depend on this
//! package for integration (e.g. workers, tools).

pub use engine::{
    scan, scan_with_callbacks, ScanError, ScanOptions, ScanProgress, Scanner, XxhashMode,
};
pub use hash::PartialOptions;
pub use output::{FileRecord, IdentityInfo};
pub use walker::{FilterOptions, WalkMode};