1//! A library for validating structured data.
2//!
3//! # Description
4//!
5//! A Validation library designed to be extendable with the use of Rust's extension trait.
67#![warn(clippy::unwrap_used)]
8#![cfg_attr(docsrs, feature(doc_auto_cfg))]
910pub mod base;
11pub mod common;
12pub mod types;