persona-wire-core 0.14.3

persona-wire core: Domain (Graph + Specification + Compute + Constraint + AutoVersion + CRUD) + Application (NamedProjection registry, Use Case) + Infrastructure (SQLite storage, Rendering adapter). Transport-agnostic.
Documentation
//! Application layer — use cases and registries.
//!
//! Holds:
//! - [`spec_registry`]       — Specification registry (dynamic / composable selector)
//! - [`projection_registry`] — NamedProjection registry (fixed / named view)
//! - [`use_cases`]           — wire_init / wire_close / wire_doctor / etc. flows
//! - [`auth`]                — indirect authentication reference layer
//!   (`AuthSpec` / `AuthResolver`) consumed by adapter fetches via the
//!   `?auth=<service_key>` URI query param convention

pub mod auth;
pub mod bundle_install;
pub mod bundle_registry;
pub mod doctor;
pub mod merger;
pub mod plugin_registry;
pub mod projection_mapper;
pub mod projection_naming;
pub mod projection_overlay;
pub mod projection_registry;
pub mod spec_registry;
pub mod use_cases;
pub mod wiring_mapper;
pub mod workflow_mapper;