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
13
14
//! **Semantic blast radius** from the warehouse call-graph (EPIC item 7) — **MOVED
//! to dwarves** (`dwarves::release_doctor::semantic_blast`).
//!
//! Doctrine (2026-07-14 — *release is a build op*): the semantic blast core (the
//! changed-symbol diff, the call-graph cross-reference, the `SemanticBlast` PODs)
//! lives in the forge over the engine-agnostic warehouse seam, reasoning over the
//! unified [`dwarves::release_doctor::model::RepoGraph`]. The nornir-owned
//! [`crate::release::doctor::run_with_warehouse_semantic_blast`] DERIVES the delta
//! from a fresh syn scan (nornir's own scanner) and injects it here via
//! [`compute_for_dirty`] / [`diff_exported_symbols`].
//!
//! This module is a thin RE-EXPORT so every `crate::release::semantic_blast::…` call
//! site resolves the single source of truth in dwarves.
pub use dwarves::release_doctor::semantic_blast::*;