revelo-util 0.2.2

Low-level string, number, and bitstream primitives (Ztring, radix conversion) underpinning revelo.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Transliteration of MediaArea's ZenLib (C++) to Rust.
//!
//! Goal is behavior parity with the C++ types used by MediaInfoLib, not
//! idiomatic Rust. Naming follows the upstream `ZenLib::` namespace
//! convention to keep parser code visually close to the C++ original.

#![allow(non_snake_case)]
#![deny(unsafe_code)]

pub mod bitstream;
pub mod types;
pub mod ztring;

pub use bitstream::BitStream;
pub use types::*;
pub use ztring::Ztring;