nornir 0.5.4

Companion to cargo: dependency tracking, release gating, deploy, benchmarks, and documentation assembly. Project-agnostic.
1
2
3
4
5
6
7
8
9
10
11
12
//! Release dependency-DAG (crate publish-order graph) — **MOVED to dwarves**
//! (`dwarves::release_doctor::depdag`).
//!
//! Doctrine (2026-07-14 — *release is a build op*): nornir performs NO releases, so
//! the release-doctor CORE lives in the forge. The neutral, egui-free graph model
//! (nodes = crates, edges = crate→crate depends-on) annotated with each crate's
//! registry state now lives in [`dwarves::release_doctor::depdag`], reasoning over
//! the unified [`dwarves::release_doctor::model::RepoGraph`].
//!
//! This module is a thin RE-EXPORT so every `crate::release::depdag::…` call site
//! resolves the single source of truth in dwarves.
pub use dwarves::release_doctor::depdag::*;