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 promote` — the irreversible tier (bump → strip fork `[patch]` → publish
//! the unblocked crates to crates.io deps-first) — **MOVED to dwarves**
//! (`dwarves::release_doctor::promote`).
//!
//! Doctrine (2026-07-14 — *release is a build op*): nornir performs NO releases, so
//! the promote orchestrator lives in the forge. It reasons over the unified
//! patch-fork promote gate ([`dwarves::release_doctor::model::compute_promote_block`]
//! / [`PromoteBlockResult`](dwarves::release_doctor::model::PromoteBlockResult)).
//!
//! This module is a thin RE-EXPORT so every `crate::release::promote::…` call site
//! resolves the single source of truth in dwarves.
pub use dwarves::release_doctor::promote::*;