2022-02-25 05:31:01 +01:00
|
|
|
#![warn(clippy::disallowed_methods)]
|
2021-07-16 21:20:59 +02:00
|
|
|
|
2021-01-22 20:14:51 +01:00
|
|
|
#[macro_use]
|
|
|
|
extern crate shadow_rs;
|
|
|
|
|
|
|
|
shadow!(shadow);
|
|
|
|
|
2019-04-07 22:43:11 +02:00
|
|
|
// Lib is present to allow for benchmarking
|
2020-10-17 11:09:27 +02:00
|
|
|
pub mod bug_report;
|
2019-09-30 14:10:35 +02:00
|
|
|
pub mod config;
|
|
|
|
pub mod configs;
|
2020-10-17 11:09:27 +02:00
|
|
|
pub mod configure;
|
2019-04-19 22:57:14 +02:00
|
|
|
pub mod context;
|
2020-04-06 19:16:18 +02: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 22:34:24 +02:00
|
|
|
pub mod module;
|
2020-10-17 11:09:27 +02:00
|
|
|
mod modules;
|
2019-04-04 22:59:03 +02: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 16:56:17 +02:00
|
|
|
mod utils;
|
2020-08-07 21:13:12 +02:00
|
|
|
|
|
|
|
#[cfg(test)]
|
|
|
|
mod test;
|