valid_toml 0.0.2

Provides the ability to load a TOML file with validation.
Documentation
/* Copyright 2016 Joshua Gentry
 *
 * Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
 * http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
 * <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
 * option. This file may not be copied, modified, or distributed
 * except according to those terms.
 */

mod error;
mod extract_result;
mod format_desc;
mod validation_error;
mod warning;

pub use enums::error::Error;
pub use enums::extract_result::ExtractResult;
pub use enums::format_desc::FormatDesc;
pub use enums::validation_error::ValidationError;
pub use enums::warning::Warning;