//! Shared analysis infrastructure for Fossil.
//!
//! Provides:
//! - `FileScanner` — discovers source files respecting .gitignore
//! - `Pipeline` — orchestrates parsing and graph building with parallel execution
//! - `Aggregator` — merges per-file graphs into a project-level call graph
//! - `AnalysisCache` — in-memory caching of parse results
pub use Aggregator;
pub use ;
pub use HotFunctionTracker;
pub use IncrementalAnalyzer;
pub use PersistentCache;
pub use ;
pub use FileScanner;
pub use SieveCache;