valid_toml 0.0.2

Provides the ability to load a TOML file with validation.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/* 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 i64_value;
mod string_value;
mod u16_value;
mod usize_value;

pub use value::i64_value::I64Value;
pub use value::string_value::StringValue;
pub use value::u16_value::U16Value;
pub use value::usize_value::UsizeValue;