pushkin-core 0.2.0

Core envelope, manifest, pipeline, and waiver types for the pushkin write-gate
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! Pushkin core: manifest, validation pipeline, result/event
//! envelope, and the append-only `SQLite` event log.
//!
//! Crate contract: everything here is deterministic (charter N6) — no
//! network, no embeddings, no LLM calls. Every fallible path returns
//! `Result` with a `thiserror` enum (errors are API).

pub mod board;
pub mod delivery;
pub mod edits;
pub mod envelope;
pub mod events;
pub mod floor_report;
pub mod legacy;
pub mod manifest;
pub mod mapper;
pub mod pipeline;
pub mod waivers;