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

#[cfg(feature = "crypto")]
pub mod crypto;

#[cfg(feature = "hashes")]
pub mod hashes;

#[cfg(feature = "creditcard")]
pub mod creditcard;

#[cfg(feature = "networks")]
pub mod networks;

#[cfg(feature = "internet")]
pub mod internet;