boundary-compiler-core 0.1.0

P31 v11A boundary compiler microkernel — strict JSON boundary compilation with receipt artifacts
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! P31 v11A boundary compiler microkernel scaffold.
//!
//! This is a standalone starter crate. It is intentionally narrow: strict JSON
//! boundary compilation with receipt artifacts. It is not the v11B graph compiler.

pub mod canonical;
pub mod digest;
mod json_boundary;
pub mod strict_json;
pub mod treatment;
pub mod types;

pub use crate::json_boundary::compile_json_boundary;
pub use crate::types::*;