rustyfi_loader/v006/mod.rs
1//! v0.0.6 / dev-0-1-0-Legacy resolution backend: `@require:`/`@import:`
2//! header resolution against a lib-root (`resolve.rs`). Shared by BOTH `V0_0`
3//! and `V0_1`-under-`LoadMode::Legacy` (dev-0-1-0's headers are byte-identical
4//! to 0.0.6's minus `@stage:`, so this backend needs no per-version branch).
5//! The dependency-graph toposort/cycle bookkeeping lives at the
6//! crate root (`graph.rs`): it is mode-agnostic (`u32`/`PathBuf` only) and
7//! the Envelopes backend (`v01x/`) needs the identical machinery.
8
9pub mod resolve;