Skip to main content

arbor_watcher/
lib.rs

1//! Arbor Watcher - File watching and incremental indexing
2//!
3//! This crate handles the file system side of things:
4//! - Walking directories to find source files
5//! - Watching for changes
6//! - Triggering incremental re-indexing
7//!
8//! It respects .gitignore and other ignore patterns.
9
10mod indexer;
11mod watcher;
12
13pub use indexer::{index_directory, IndexOptions, IndexResult};
14pub use watcher::{FileChange, FileWatcher};