1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#![warn(clippy::all, clippy::nursery, clippy::pedantic)]
#![allow(clippy::module_name_repetitions, clippy::should_implement_trait)]
#![allow(dead_code)]

pub mod file;
pub mod utilities;
pub mod networking;
pub mod fmt;
pub mod colors;
pub mod strings;
pub mod logging;
pub mod constants;
pub mod stbchat;
pub mod email;
pub mod id;

#[cfg(feature = "notifications")] pub mod notifications;
#[cfg(feature = "stbchat-scapi")] pub mod scapi;