2021-03-15 10:40:52 +00:00
|
|
|
use crate::config::ModuleConfig;
|
2019-09-30 12:10:35 +00:00
|
|
|
|
|
|
|
use starship_module_config_derive::ModuleConfig;
|
|
|
|
|
|
|
|
#[derive(Clone, ModuleConfig)]
|
|
|
|
pub struct RustConfig<'a> {
|
2020-07-07 22:45:32 +00:00
|
|
|
pub format: &'a str,
|
|
|
|
pub symbol: &'a str,
|
|
|
|
pub style: &'a str,
|
2019-09-30 12:10:35 +00:00
|
|
|
pub disabled: bool,
|
2021-02-21 17:01:17 +00:00
|
|
|
pub detect_extensions: Vec<&'a str>,
|
|
|
|
pub detect_files: Vec<&'a str>,
|
|
|
|
pub detect_folders: Vec<&'a str>,
|
2019-09-30 12:10:35 +00:00
|
|
|
}
|
|
|
|
|
2021-03-15 10:40:52 +00:00
|
|
|
impl<'a> Default for RustConfig<'a> {
|
|
|
|
fn default() -> Self {
|
2019-09-30 12:10:35 +00:00
|
|
|
RustConfig {
|
2021-01-20 17:46:26 +00:00
|
|
|
format: "via [$symbol($version )]($style)",
|
2020-07-07 22:45:32 +00:00
|
|
|
symbol: "🦀 ",
|
|
|
|
style: "bold red",
|
2019-09-30 12:10:35 +00:00
|
|
|
disabled: false,
|
2021-02-21 17:01:17 +00:00
|
|
|
detect_extensions: vec!["rs"],
|
|
|
|
detect_files: vec!["Cargo.toml"],
|
|
|
|
detect_folders: vec![],
|
2019-09-30 12:10:35 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|