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