mirror of
https://github.com/Llewellynvdm/starship.git
synced 2024-11-28 07:46:28 +00:00
bcaf835321
* fix https://github.com/starship/starship/issues * cargo fmt * upgrade shadow-rs 0.5.6 * upgrade shadow-rs * update * complet bug_report infomation * cargo fmt * upgrade shadow-rs 0.5.11 * upgrade shadow-rs 0.5.14 * fixed:https://github.com/starship/starship/pull/2124#discussion_r559076634 fixed:https://github.com/starship/starship/pull/2124#discussion_r559076918 * add long_version * upgrade shadow-rs 0.5.19; adaptate clap version() use by shadow-rs clap_version() * fix unit test error * fix test error * upgrade shadow-rs 0.5.22 * upgrade shadow-rs 0.5.23
23 lines
330 B
Rust
23 lines
330 B
Rust
#[macro_use]
|
|
extern crate shadow_rs;
|
|
|
|
shadow!(shadow);
|
|
|
|
// 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 formatter;
|
|
pub mod init;
|
|
pub mod logger;
|
|
pub mod module;
|
|
mod modules;
|
|
pub mod print;
|
|
mod segment;
|
|
mod utils;
|
|
|
|
#[cfg(test)]
|
|
mod test;
|