brink-format 0.0.2

Binary interface between brink compiler and runtime
Documentation
1
2
3
4
5
6
7
8
9
//! Textual (.inkt) format: writer and reader.
//!
//! Gated behind the `inkt` cargo feature since the reader depends on `pest`.

mod read;
pub(crate) mod write;

pub use read::{InktParseError, read_inkt};
pub use write::write_inkt;