scankit
Walk + watch + filter directory trees. The shared scanner Tauri / Iced / native desktop apps reach for when they need to enumerate user files.
Status: v0.2 — one-shot directory walking + continuous filesystem-event monitoring. The
walkfeature (default) gives youScanner::walk(root) -> impl Iterator<Item = ScanEntry>; thewatchfeature (opt-in) addsScanner::scan(root) -> ScanStreamfor an initial walk followed by live Created / Modified / Deleted events, with the same exclude + size-cap filters applied throughout.
Why this exists
Every "index files on the user's machine" project — RAG tools,
search apps, backup utilities, file watchers, document assistants —
rebuilds the same five hundred lines of walkdir-with-excludes-and-
size-cap-and-symlink-handling glue. Every project gets it slightly
wrong:
- Missed
**/.git/**in the exclude set, scanned 200K objects in a.packfile. - Forgot to cap file sizes, OOM'd on a 50 GB sqlite database the user accidentally dropped in their Documents folder.
- Followed a symlink loop and hung the indexer.
- Rebuilt the
GlobSetper-iteration, ate 30 % of CPU on glob compilation alone.
scankit ships these bits once, with the edge cases handled
in one place. It's deliberately lower-level than a full
indexer — it does not parse files, generate embeddings, or
persist anything. It hands you ScanEntrys and gets out of the
way. Pair it with mdkit for
documents → markdown, with calamine / csv for tabular files,
with whatever you like for the rest.
Quick start
use ;
use Path;
let scanner = new?;
for result in scanner.walk
# Ok::
Design principles
- Do one thing well. Walk + filter + emit
ScanEntry. Anything richer (parse, embed, persist) is the consuming application's job. Send + Synceverywhere. A singleScannershared across threads, a singleGlobSetbuilt once.- No surprises in the iterator. Filtered-out entries are
silently dropped. Errors come through as
Erritems in the stream — callers can log-and-continue or short-circuit. - Forward-compat defaults.
ScanConfigandScanEntryare#[non_exhaustive]so we can add fields (content hash, inode, per-entry metadata) without breaking downstream callers. - Honest dep budget.
walkdir+globset+thiserrorare the only required deps.notifyis gated behind thewatchfeature.
Feature flags
| Feature | Adds | Approx. cost |
|---|---|---|
walk (default) |
One-shot directory walking | ~250 KB compiled |
watch |
Continuous filesystem-event monitoring on top of an initial walk | ~500 KB compiled |
default |
walk |
~250 KB compiled |
License
Dual-licensed under MIT OR Apache 2.0
at your option. SPDX: MIT OR Apache-2.0.
Status & roadmap
- v0.1 — one-shot walking.
Scanner+ScanConfig+ScanEntry, exclude-glob and size-cap filters, symlink handling, lazy iterator. - v0.2 —
watchfeature.Scanner::scan→ScanStream(anIterator<Item = ScanEvent>). Initial walk + continuous filesystem-event monitoring vianotify, same exclude + size-cap filters apply to both.InitialCompletesentinel marks the boundary between the initial enumeration and live events. - v0.3 —
Renamedevent variant (consolidateDeleted+Createdpairs from notify's platform-specific rename shapes); extension-based dispatch helper. - v0.4 — audit pass + first stable trait release (1.0 candidate).
Issues, PRs, and design discussion welcome at https://github.com/seryai/scankit/issues.
Used by
scankit was extracted from the folder-scanner of Sery
Link, a privacy-respecting data network for the files on
your machines. If you use scankit in your project, please open
a PR to add yourself here.
Acknowledgements
walkdir—BurntSushi's battle-tested directory walker. Loop detection, permission handling, and Send-iterator semantics all come from there.globset— alsoBurntSushi's. The compiled multi-pattern glob matcher that makes our exclude set efficient even with hundreds of patterns.notify— the cross-platform filesystem-event crate that v0.2's watch loop will be built on.mdkit— sibling crate; scankit does "files → entries", mdkit does "documents → markdown".