kyyn_core/lib.rs
1//! `kyyn-core` — the tiny shared vocabulary between the `ev` engine and KB schema
2//! crates. The engine never links a schema crate (schemas are compiled and run
3//! as subprocesses at accept time); both sides link *this* crate instead: the
4//! universal [`link::Link`] grammar and the [`violation`] types that flow back
5//! over the validator's stdio protocol.
6
7pub mod link;
8pub mod plugin;
9pub mod progress;
10pub mod protocol;
11pub mod query;
12pub mod registry;
13pub mod ronfmt;
14pub mod schemadef;
15pub mod storage;
16pub mod tap;
17pub mod validate;
18pub mod value;
19pub mod violation;