1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
#![allow(
    dead_code,
    unused_variables,
    non_snake_case,
    non_upper_case_globals,
    unused_imports,
    unused_mut,
    unused_must_use,
    non_camel_case_types,
)]
// #![feature(const_for)]
#![feature(unboxed_closures)]
#![feature(slice_pattern)]
// #![feature(trait_alias)]
#![allow(
    clippy::module_inception,
    clippy::useless_format,
    clippy::derive_hash_xor_eq,
    clippy::unused_io_amount,
    clippy::new_without_default
)]

pub mod util;

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

pub mod collections;


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

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

#[cfg(feature = "aesthetics")]
pub mod aesthetics;
// #[cfg(feature = "aesthetics")]
// pub use ansi_term::Color::Red;

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

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

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


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

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

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

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

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

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


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

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

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

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


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

pub mod system;