Skip to main content

oxilean_codegen/ir_serialize/
mod.rs

1//! Serialization and deserialization of the LCNF intermediate representation.
2//!
3//! Supports three wire formats: [`IrFormat::Text`] (human-readable), [`IrFormat::Json`]
4//! (machine-readable UTF-8 JSON), and [`IrFormat::Binary`] (compact binary; write-only
5//! in this version).
6
7pub mod functions;
8pub mod types;
9
10pub use functions::*;
11pub use types::*;