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
//! Tools for manipulating byte-level data.

/// Encoding/decoding booleans.
pub mod bool;

/// Compressing/decompressing from/to common formats.
pub mod compress;

/// Decoders for streams of floats, etc.
pub mod decoders;

/// Encoding/decoding floating-point numbers.
pub mod float;

/// Determining the length of a stream without actually writing/storing data.
pub mod lengthwriter;

/// Serializing/deserializing traits.
pub mod serialize;

/// String utilities.
pub mod strings;

/// Encoding/decoding variable-length numbers.
pub mod varnum;