pushkin_core/lib.rs
1//! Pushkin core: manifest, validation pipeline, result/event
2//! envelope, and the append-only `SQLite` event log.
3//!
4//! Crate contract: everything here is deterministic (charter N6) — no
5//! network, no embeddings, no LLM calls. Every fallible path returns
6//! `Result` with a `thiserror` enum (errors are API).
7
8pub mod board;
9pub mod delivery;
10pub mod edits;
11pub mod envelope;
12pub mod events;
13pub mod floor_report;
14pub mod legacy;
15pub mod manifest;
16pub mod mapper;
17pub mod pipeline;
18pub mod waivers;