starship/src/lib.rs

27 lines
406 B
Rust
Raw Normal View History

#![warn(clippy::disallowed_methods)]
#[macro_use]
extern crate shadow_rs;
shadow!(shadow);
2019-04-07 20:43:11 +00:00
// Lib is present to allow for benchmarking
pub mod bug_report;
pub mod config;
pub mod configs;
pub mod configure;
pub mod context;
pub mod context_env;
pub mod formatter;
pub mod init;
pub mod logger;
2019-05-01 20:34:24 +00:00
pub mod module;
mod modules;
2019-04-04 20:59:03 +00:00
pub mod print;
mod segment;
mod serde_utils;
mod utils;
#[cfg(test)]
mod test;