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
//! Cargo-pipeline expertise (bump planning, publish-order walk, skew-bump apply,
//! `[patch.crates-io]` strip, yank cascade, changelog, holger mirror, …) — **MOVED
//! to dwarves** (`dwarves::release_doctor::cargo`).
//!
//! Doctrine (2026-07-14 — *release is a build op*): nornir performs NO releases, so
//! the cargo-pipeline helpers that drive the release live in the forge. They now
//! reason over the unified [`dwarves::release_doctor::model::CrateSkew`] (the skew
//! bumps `apply_skew_bumps` applies come from the shared doctor analysis).
//!
//! This module is a thin RE-EXPORT so every `crate::release::cargo::…` call site
//! resolves the single source of truth in dwarves.
pub use dwarves::release_doctor::cargo::*;