Files
starship/src/lib.rs
T

23 lines
330 B
Rust
Raw Normal View History

#[macro_use]
extern crate shadow_rs;
shadow!(shadow);
2019-04-07 16:43:11 -04:00
// Lib is present to allow for benchmarking
pub mod bug_report;
2019-09-30 20:10:35 +08:00
pub mod config;
pub mod configs;
pub mod configure;
2019-04-19 16:57:14 -04:00
pub mod context;
pub mod formatter;
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;
mod modules;
2019-04-04 16:59:03 -04:00
pub mod print;
mod segment;
2019-06-10 15:56:17 +01:00
mod utils;
#[cfg(test)]
mod test;