1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
//! WebAssembly format library

#![warn(missing_docs)]

extern crate byteorder;

pub mod elements;
pub mod builder;

pub use elements::{
    Error as SerializationError,
    deserialize_buffer, 
    deserialize_file,
    serialize,
    serialize_to_file,
};