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
26
#![warn(missing_docs)]
/*! Provides validation facilities for the 
[sounding-base](https://github.com/rnleach/sounding-base.git) crate.

See [examples](examples/validate.rs) for example of library use.

*/

//
// API
//
pub use validate::validate;
pub use error::{ValidationError, ValidationErrors};

//
// Internal use only
//

extern crate failure;
#[macro_use]
extern crate failure_derive;

extern crate sounding_base;

mod error;
mod validate;