mirror of
https://github.com/starship/starship.git
synced 2026-06-22 02:02:12 +07:00
2d4b183fce
* refactor: replace module_config_derive with serde Changes include: * Removing `starship_module_config_derive` and replacing it with `serde::Deserialize` * Removing `RootModuleConfig::load_config`. While potentially useful, it was only used in tests. And it would require something like `serde::DeserializeSeed` which is not derived by serde. * Merging `RootModuleConfig` into `ModuleConfig` * Implementing a `ValueDeserializer` that holds a reference to a `toml::Value` in `serde_utils.rs` * Deserialization errors (invalid type) are now logged and include the current key and the struct names * Unknown keys are now considered an error. "Did you mean?"-messages are still possible * fix typo Co-authored-by: Matan Kushner <hello@matchai.dev> Co-authored-by: Matan Kushner <hello@matchai.dev>
27 lines
728 B
Rust
27 lines
728 B
Rust
use serde::{Deserialize, Serialize};
|
|
use std::collections::HashMap;
|
|
|
|
#[derive(Clone, Deserialize, Serialize)]
|
|
#[serde(default)]
|
|
pub struct GcloudConfig<'a> {
|
|
pub format: &'a str,
|
|
pub symbol: &'a str,
|
|
pub style: &'a str,
|
|
pub disabled: bool,
|
|
pub region_aliases: HashMap<String, &'a str>,
|
|
pub project_aliases: HashMap<String, &'a str>,
|
|
}
|
|
|
|
impl<'a> Default for GcloudConfig<'a> {
|
|
fn default() -> Self {
|
|
GcloudConfig {
|
|
format: "on [$symbol$account(@$domain)(\\($region\\))]($style) ",
|
|
symbol: "☁️ ",
|
|
style: "bold blue",
|
|
disabled: false,
|
|
region_aliases: HashMap::new(),
|
|
project_aliases: HashMap::new(),
|
|
}
|
|
}
|
|
}
|