//! Textual representation of ONNX models (ONNX_RS ยง5).
//!
//! Implements both directions of the readable format: [`to_text`] renders an
//! owned model and [`from_text`] reconstructs one. Weight and tensor payloads
//! are intentionally represented by typed references/placeholders rather than
//! embedding binary data.
pub use from_text;
pub use ;