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
//! Source-drift detector — **MOVED to the shared `nornir-release` crate** (edda)
//! so the release logic lives in ONE place (Law #1); the release *command* moves
//! to dwarves over nornir's warehouse via gRPC. This module now re-exports the
//! crate so existing `crate::release::source_drift::…` call sites are unchanged.
//!
//! The warehouse-coupled release parts (doctor/gate/preflight) deliberately STAY
//! in nornir — they read nornir's Iceberg warehouse, so a leaf-crate move would
//! invert the dep graph (edda → nornir = cycle).
pub use dwarves::release_doctor::source_drift::*;