persona-wire-core 0.2.0

persona-wire core: Domain (Graph + Specification + Compute + Constraint + AutoVersion + CRUD) + Application (NamedProjection registry, Use Case) + Infrastructure (SQLite storage, Rendering adapter). Transport-agnostic.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Application layer — use cases and registries.
//!
//! Holds:
//! - [`spec_registry`]       — Specification registry (dynamic / composable axis)
//! - [`projection_registry`] — NamedProjection registry (fixed / named axis)
//! - [`use_cases`]           — wire_init / wire_close / wire_doctor / etc. flows

pub mod merger;
pub mod persona_pack_resolver;
pub mod projection_registry;
pub mod spec_registry;
pub mod use_cases;