Skip to main content

boundary_compiler_core/
lib.rs

1//! P31 v11A boundary compiler microkernel scaffold.
2//!
3//! This is a standalone starter crate. It is intentionally narrow: strict JSON
4//! boundary compilation with receipt artifacts. It is not the v11B graph compiler.
5
6pub mod canonical;
7pub mod digest;
8mod json_boundary;
9pub mod strict_json;
10pub mod treatment;
11pub mod types;
12
13pub use crate::json_boundary::compile_json_boundary;
14pub use crate::types::*;