1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
//! HFF Core
//! Contains the internal structure of HFF and basic
//! serialization abilities.
#![warn(missing_docs)]

// Endian utilities.
mod endian;
pub use endian::*;

// The crate error and result types.
mod error;
pub use error::{Error, Result};

// The eight character code type.
mod ecc;
pub use ecc::Ecc;

// The semantic versioning type.
mod semver;
pub use semver::Semver;

// The file header.
mod header;
pub use header::Header;

// A table in the structure.
mod table;
pub use table::Table;

// A chunk in the structure.
mod chunk;
pub use chunk::Chunk;