cjtoolkit_structured_validator/
lib.rs

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.
6
7#![warn(clippy::unwrap_used)]
8#![cfg_attr(docsrs, feature(doc_auto_cfg))]
9
10pub mod base;
11pub mod common;
12pub mod types;