starship/src/lib.rs

15 lines
229 B
Rust
Raw Normal View History

2019-04-07 22:43:11 +02:00
// Lib is present to allow for benchmarking
pub mod config;
pub mod configs;
pub mod context;
pub mod formatter;
pub mod logger;
2019-05-01 22:34:24 +02:00
pub mod module;
2019-04-04 22:59:03 +02:00
pub mod modules;
pub mod print;
2019-04-12 23:49:20 +02:00
pub mod segment;
mod utils;
#[cfg(test)]
mod test;