facett-core 0.1.15

facett — visual kernel: render a node/edge Scene into egui (wgpu fast path to come)
Documentation
//! **The registry MARKDOWN generator** — regenerate THE LIST from the compiled
//! [`facett_core::errcode::REGISTRY`], which is the single source of truth.
//!
//! The registry markdown is a human-readable EXPORT, never hand-maintained: a
//! hand-edited copy drifts (it already did once — a hand-written "25 codes" against a
//! compiled 27). Run this and redirect:
//!
//! ```sh
//! cargo run -p facett-core --bin errcode_registry_md > .nornir/facett-error-codes-registry.md
//! ```
//!
//! There is deliberately NO second copy. A hand-`cp`'d duplicate of a generated
//! file has no freshness guard — this one drifted to 27 codes against a compiled
//! 38, and to consumer mounts facett had already removed — so the duplicate in
//! workspace_nordisk was deleted rather than re-synced. `docs/_gen.py` globs every
//! .md in the tree, so this file reaches the docs site on its own.
//!
//! `facett-core/tests/registry_md_fresh.rs` FAILS if the committed markdown differs
//! from what this prints, so the export can never silently drift again.

fn main() {
    print!("{}", facett_core::errcode::registry_markdown());
}