gobby-code 1.3.2

Fast Rust CLI for Gobby's code index — AST-aware search, symbol navigation, and dependency graph
Documentation
mod graph_payloads;
mod payload_queries;
mod relationship_queries;
mod relationships;
mod support;

pub use graph_payloads::{
    blast_radius_graph, file_graph, project_overview_graph, symbol_neighbors,
};
#[cfg(test)]
pub(super) use payload_queries::{blast_radius_file_import_query, file_calls_query};
#[cfg(test)]
pub(crate) use relationship_queries::{
    get_imports_query, resolve_external_call_target_query, symbol_callee_edges_query,
    symbol_path_steps_query,
};
pub use relationships::{
    DEFAULT_SYMBOL_PATH_MAX_DEPTH, MAX_SYMBOL_PATH_DEPTH, ResolvedExternalCallTarget, blast_radius,
    count_callers, count_usages, find_callee_ids_batch, find_callees_batch, find_caller_ids,
    find_caller_ids_batch, find_callers, find_callers_batch, find_usage_ids, find_usages,
    get_imports, resolve_external_call_target, shortest_symbol_path,
};
#[cfg(test)]
pub(super) use support::dedupe_limited_blast_rows;