1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
#![doc(test(attr(deny(warnings))))]
#![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 crate::error::{ValidationError, ValidationErrors};
pub use crate::validate::validate;

//
// Internal use only
//

mod error;
mod validate;