gobby-code 1.3.3

Fast Rust CLI for Gobby's code index — AST-aware search, symbol navigation, and dependency graph
Documentation
//! Full and incremental indexing orchestrator.
//!
//! Writes files, symbols, imports, calls, unresolved targets, and content chunks
//! to the PostgreSQL hub. External sync (Qdrant vectors, FalkorDB graph) is
//! delegated through projection sync status and handled outside this module.

mod file;
mod freshness_probe;
mod lifecycle;
mod local_imports;
mod overlay;
mod pipeline;
mod sink;
mod types;
mod util;

pub use freshness_probe::project_changed_since;
pub use lifecycle::invalidate;
pub use pipeline::index_files;
pub use types::{
    IndexDegradation, IndexDurations, IndexOutcome, IndexRequest, UnsupportedFileType,
};

#[cfg(test)]
mod stale_cleanup_tests;
#[cfg(test)]
mod tests;