core_dev/
lib.rs

1#![allow(
2    dead_code,
3    unused_variables,
4    non_snake_case,
5    non_upper_case_globals,
6    unused_imports,
7    unused_mut,
8    unused_must_use,
9    non_camel_case_types,
10)]
11// #![feature(const_for)]
12#![feature(unboxed_closures)]
13#![feature(slice_pattern)]
14// #![feature(trait_alias)]
15#![allow(
16    clippy::module_inception,
17    clippy::useless_format,
18    clippy::derive_hash_xor_eq,
19    clippy::unused_io_amount,
20    clippy::new_without_default
21)]
22
23pub mod util;
24
25#[cfg(feature = "core")]
26pub mod core;
27
28pub mod collections;
29
30
31#[cfg(feature = "synh")]
32pub mod synh;
33
34#[cfg(feature = "traits")]
35pub mod traits;
36
37#[cfg(feature = "aesthetics")]
38pub mod aesthetics;
39// #[cfg(feature = "aesthetics")]
40// pub use ansi_term::Color::Red;
41
42#[cfg(feature = "pathlib")]
43pub mod pathlib;
44
45#[cfg(feature = "spinners")]
46pub mod spinners;
47
48#[cfg(feature = "random")]
49pub mod random;
50
51
52#[cfg(feature = "icons")]
53pub mod icons;
54
55#[cfg(feature = "stringlib")]
56pub mod stringlib;
57
58#[cfg(feature = "algorithms")]
59pub mod algorithms;
60
61#[cfg(feature = "shell")]
62pub mod shell;
63
64#[cfg(feature = "datetime")]
65pub mod datetime;
66
67#[cfg(feature = "audio")]
68pub mod audio;
69
70
71#[cfg(feature = "terminal")]
72pub mod terminal;
73
74#[cfg(feature = "linuxapi")]
75pub mod linuxapi;
76
77#[cfg(feature = "image")]
78pub mod imagelib;
79
80#[cfg(feature = "weather")]
81pub mod weather;
82
83
84#[cfg(feature = "email")]
85pub mod email;
86
87pub mod system;