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
//! The publish cascade (deps-first `cargo publish` waves, 429 backoff, crates.io
//! index polling, pure-Rust `gix` commit+tag, `.crate` stats) — **MOVED to dwarves**
//! (`dwarves::release_doctor::publish`).
//!
//! Doctrine (2026-07-14 — *release is a build op*): nornir no longer performs
//! releases, so the publish-order walker + `cargo publish` cascade live in the
//! forge. The implementation now lives in [`dwarves::release_doctor::publish`]
//! (pure cargo/git/crates.io — no warehouse).
//!
//! This module is a thin RE-EXPORT so the remaining nornir call sites
//! (`crate::release::publish::…`) resolve the single source of truth in dwarves.
pub use dwarves::release_doctor::publish::*;