rsaeb 0.8.0

A no_std + alloc interpreter for A=B ordered rewrite programs.
Documentation
mod compact;
mod count;
mod payload;
mod program;
mod rejection;
mod runtime;

#[cfg(test)]
mod tests;

pub(crate) use compact::CompactByte;
pub use count::{
    PayloadByteCount, ReturnOutputByteCount, RuntimeInputByteCount, RuntimeStateByteCount,
    TraceSnapshotByteCount,
};
pub(crate) use payload::{NonEmptyPayloadNeedle, Payload, PayloadNeedle};
pub use rejection::{
    NonAsciiCodeByte, NonAsciiInputByte, NonPrintableCodeByte, ReservedSyntaxByte,
};
pub(crate) use runtime::RuntimeByte;