validators 0.25.3

This library is designed for validating and modeling user input. The crate includes models, functions, traits, errors, and other dependencies.
Documentation
1
2
3
4
5
6
7
8
9
#[cfg(any(feature = "email", feature = "host"))]
mod host;
#[cfg(any(feature = "email", feature = "host"))]
pub use host::*;

#[cfg(feature = "http_ftp_url")]
mod protocol;
#[cfg(feature = "http_ftp_url")]
pub use protocol::*;