gobby-code 0.9.9

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
mod lifecycle;
mod payload;
mod reads;

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

#[cfg(test)]
mod tests;