nornir 0.4.13

Companion to cargo: dependency tracking, release gating, deploy, benchmarks, and documentation assembly. Project-agnostic.
Documentation
//! Urðr Threads — egui time-travel visualizer for the warehouse.
//!
//! Reads (read-only) the `release_lineage` and `dep_graph_edges`
//! tables and paints each repo as a swim-lane along the release
//! timeline. Cross-repo dep edges from the snapshot pinned to a
//! release are drawn as woven threads between lanes (the literal
//! Norns motif).
//!
//! Pure Rust — eframe over glow on Linux/macOS/Windows. No JS,
//! no WebView, no C deps beyond the platform windowing libs that
//! eframe already brings in.
//!
//! Enable with the `viz` feature; the binary lives at
//! `src/bin/urdr-threads.rs`.

// The pure data model (no egui) is also compiled for the `server` build so the
// `Viz.Timeline` RPC can reuse `build_timeline`. The egui app + its tabs are
// `viz`-only.
pub mod model;
pub use model::{build_timeline, load_timeline, Lane, LaneNode, Timeline};

// Data-only diagram renderers (Mermaid / Markdown over the `Timeline` model, no
// egui) — compiled alongside `model` so docs/server/CLI can render the viz
// diagrams headlessly.
pub mod diagram;

// Pure (no-egui) dependency-graph layout + edge classification — the data core
// behind the 🔗 Dep Graph renderer (deep transitive closure, direct-vs-transitive
// classification, click-collapse). Compiled alongside `model` (server build too)
// so the closure / classification logic is unit-testable and the laid-out graph
// structure can be folded into `state_json` (LAW #6).
pub mod depgraph_layout;

#[cfg(feature = "viz")]
mod action_log;
#[cfg(feature = "viz")]
mod app;
#[cfg(feature = "viz")]
mod callgraph;
#[cfg(feature = "viz")]
mod funnel_tab;
#[cfg(feature = "viz")]
mod funnel_view;
#[cfg(feature = "viz")]
mod graph;
#[cfg(feature = "viz")]
mod knowledge;
#[cfg(feature = "viz")]
mod ops_tabs;
#[cfg(feature = "viz")]
mod security_tab;
#[cfg(feature = "viz")]
mod live;
#[cfg(feature = "viz")]
mod release_tab;
#[cfg(feature = "viz")]
mod test_tab;
#[cfg(feature = "viz")]
pub mod remote; // gRPC thin-client (list_workspaces / fetch_timeline / fetch_tables /
                // scan_table) — public so the headless viz test matrix can drive it.
#[cfg(feature = "viz")]
mod timetravel;
#[cfg(feature = "viz")]
pub mod trace; // structured IN/OUT/END event stream ($NORNIR_VIZ_TRACE) — the
               // machine-readable data the UI actually rendered.
#[cfg(feature = "viz")]
mod mcp_tab;
#[cfg(feature = "viz")]
mod warehouse_tab;

#[cfg(feature = "viz")]
pub use app::UrdrThreadsApp;