validaten/lib.rs
1#[cfg(any(
2feature = "crypto",
3feature = "hashes",
4feature = "creditcard",
5feature = "internet"
6))]
7#[macro_use]
8extern crate lazy_static;
9
10#[cfg(feature = "crypto")]
11pub mod crypto;
12
13#[cfg(feature = "hashes")]
14pub mod hashes;
15
16#[cfg(feature = "creditcard")]
17pub mod creditcard;
18
19#[cfg(feature = "networks")]
20pub mod networks;
21
22#[cfg(feature = "internet")]
23pub mod internet;