fallow_graph/lib.rs
1//! Module graph construction and import resolution for the fallow dead code analyzer.
2//!
3//! This crate builds the dependency graph from parsed modules, resolves import
4//! specifiers to their targets, and tracks export usage through re-export chains.
5
6#![warn(missing_docs)]
7
8pub mod graph;
9pub mod project;
10pub mod resolve;