gobby-code 1.3.3

Fast Rust CLI for Gobby's code index — AST-aware search, symbol navigation, and dependency graph
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
mod lifecycle;
mod payload;
mod reads;

pub(crate) use lifecycle::cleanup_deleted_project_graph;
pub use lifecycle::{
    GRAPH_SYNC_CONTRACT_EXIT_CODE, GraphSyncContractError, cleanup_orphans, clear, rebuild,
    sync_file,
};
pub use payload::{file, graph_blast_radius, neighbors, overview, report};
pub use reads::{blast_radius, callers, imports, path, usages};

#[cfg(test)]
mod tests;