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
//! Rust support for Flatbuffers.
//!
//! FlatBuffers is an efficient cross platform serialization library for games
//! and other memory constrained apps. It allows you to directly access
//! serialized data without unpacking/parsing it first, while still having great
//! forwards/backwards compatibility.
//! 
#![doc(html_logo_url="http://google.github.io/flatbuffers/fpl_logo_small.png")]

#![deny(unused_qualifications, missing_debug_implementations, trivial_casts,
        missing_copy_implementations, unused_import_braces, missing_docs)]

extern crate byteorder;

mod builder;
mod types;
mod table;
mod iter;

pub use self::builder::{Builder,ObjectBuilder};
pub use self::types::{UOffsetT, VOffsetT, SOffsetT};
pub use self::table::Table;
pub use self::iter::*;