1
0
mirror of https://github.com/Llewellynvdm/starship.git synced 2024-06-10 12:22:21 +00:00
starship/src/lib.rs

15 lines
229 B
Rust
Raw Normal View History

2019-04-07 20:43:11 +00: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 20:34:24 +00:00
pub mod module;
2019-04-04 20:59:03 +00:00
pub mod modules;
pub mod print;
2019-04-12 21:49:20 +00:00
pub mod segment;
mod utils;
#[cfg(test)]
mod test;