Skip to main content

pushkin_daemon/
lib.rs

1//! pushkin-daemon: the warm-path validation server (spec §4.3, §8.1, §8.4).
2//! Serves the same uniform result JSON as the cold in-process path over a
3//! Unix domain socket under `.pushkin/`; holds parsers and per-file state
4//! warm; probes schema epochs eagerly at startup. The daemon is an
5//! optimization, never a gate-weakening layer: shims that cannot reach it
6//! fall back to the cold path, and warm results must be byte-identical to
7//! cold ones (Phase 4 conformance-parity tests).
8
9pub mod protocol;
10pub mod regen;
11pub mod server;
12pub mod warm;