persona-wire-core 0.14.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
13
14
15
16
17
18
//! Math backend Graph — open-vocabulary graph primitives.
//!
//! Pure graph primitives (Node / Edge / Severity / CRUD / Compute / Constraint /
//! AutoVersion / Repository / Specification). Tenant-agnostic, persona-agnostic.
//!
//! Domain knowledge (persona-wire vocabulary) lives in `domain::entity` and uses
//! this module as a backend SDK. See the crate-level "Three-layer split"
//! rationale in [`crate`] docs.

pub mod autoversion;
pub mod compute;
pub mod constraint;
pub mod crud;
pub mod node;
pub mod repository;
pub mod specification;

pub use node::*;