//! Raw LZVN stream encoding and decoding.
//!
//! A raw LZVN stream is an opcode stream terminated by an end marker. Apple
//! encoders commonly emit an 8-byte padded form, while decoders may also
//! encounter compact single-byte `0x06` end markers in the wild.
//! Unlike Apple container formats, it does not store the decoded size.
pub use ;
pub use encode;
pub use ;