magellan 3.3.1

Deterministic codebase mapping tool for local development
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! LSIF (Language Server Index Format) export for cross-repository navigation
//!
//! LSIF is a standard format for indexing source code that enables:
//! - Cross-repository symbol resolution
//! - Dependency tracking
//! - Code intelligence across project boundaries
//!
//! See: https://lsif.dev/

pub mod export;
pub mod import;
pub mod schema;

pub use export::export_lsif;
pub use import::import_lsif;
pub use schema::{Edge, LsifGraph, PackageData, Vertex};