2022-02-25 05:31:01 +01:00
|
|
|
#![warn(clippy::disallowed_methods)]
|
2021-07-16 21:20:59 +02:00
|
|
|
|
2021-01-23 03:14:51 +08:00
|
|
|
#[macro_use]
|
|
|
|
extern crate shadow_rs;
|
|
|
|
|
|
|
|
shadow!(shadow);
|
|
|
|
|
2019-04-07 16:43:11 -04:00
|
|
|
// Lib is present to allow for benchmarking
|
2020-10-17 11:09:27 +02:00
|
|
|
pub mod bug_report;
|
2019-09-30 20:10:35 +08:00
|
|
|
pub mod config;
|
|
|
|
pub mod configs;
|
2020-10-17 11:09:27 +02:00
|
|
|
pub mod configure;
|
2019-04-19 16:57:14 -04:00
|
|
|
pub mod context;
|
2023-04-14 10:29:21 +10:00
|
|
|
pub mod context_env;
|
2020-04-07 01:16:18 +08:00
|
|
|
pub mod formatter;
|
2020-10-17 11:09:27 +02:00
|
|
|
pub mod init;
|
2020-09-28 22:38:50 +02:00
|
|
|
pub mod logger;
|
2019-05-01 16:34:24 -04:00
|
|
|
pub mod module;
|
2020-10-17 11:09:27 +02:00
|
|
|
mod modules;
|
2019-04-04 16:59:03 -04:00
|
|
|
pub mod print;
|
2020-10-17 11:09:27 +02:00
|
|
|
mod segment;
|
2022-03-26 10:42:19 +01:00
|
|
|
mod serde_utils;
|
2019-06-10 15:56:17 +01:00
|
|
|
mod utils;
|
2020-08-07 21:13:12 +02:00
|
|
|
|
|
|
|
#[cfg(test)]
|
|
|
|
mod test;
|