//! Section readers for binary format deserialization.
//!
//! Each reader handles one DixScript section: CONFIG, ENUMS, DATA, SECURITY.
//! IMPORTS, QUICKFUNCS, and DLM are compile-time only and are not stored in binary.
pub use ConfigSectionReader;
pub use EnumsSectionReader;
pub use DataSectionReader;
pub use SecuritySectionReader;
pub use binary_format;
pub use section_offset;
pub use binary_serialization_context;
pub use binary_serialization_error;
pub use value_decoder;