crabmap 0.1.1

Rust code satellite map — index, query, and navigate your entire codebase
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Analyzer module - Rust AST analysis and graph construction
//
// This module is being refactored from a single large file into
// multiple focused sub-modules for better maintainability.

// Re-export the main public API
pub use self::index::index_project;
pub use self::types::IndexOptions;

// Sub-modules
pub mod builder;
mod helpers;
mod index;
pub mod resolution;
mod types;
pub mod visitors;