2022-03-26 10:42:19 +01:00
|
|
|
use serde::{Deserialize, Serialize};
|
2020-05-21 18:49:49 +02:00
|
|
|
|
2022-03-26 10:42:19 +01:00
|
|
|
#[derive(Clone, Deserialize, Serialize)]
|
2022-09-09 14:59:38 +02:00
|
|
|
#[cfg_attr(
|
|
|
|
|
feature = "config-schema",
|
|
|
|
|
derive(schemars::JsonSchema),
|
|
|
|
|
schemars(deny_unknown_fields)
|
|
|
|
|
)]
|
2022-03-26 10:42:19 +01:00
|
|
|
#[serde(default)]
|
2020-05-21 18:49:49 +02:00
|
|
|
pub struct ZigConfig<'a> {
|
2020-07-08 06:45:32 +08:00
|
|
|
pub format: &'a str,
|
2021-04-29 23:22:20 +02:00
|
|
|
pub version_format: &'a str,
|
2020-07-08 06:45:32 +08:00
|
|
|
pub symbol: &'a str,
|
|
|
|
|
pub style: &'a str,
|
2020-05-21 18:49:49 +02:00
|
|
|
pub disabled: bool,
|
2021-02-14 22:21:44 +01:00
|
|
|
pub detect_extensions: Vec<&'a str>,
|
|
|
|
|
pub detect_files: Vec<&'a str>,
|
|
|
|
|
pub detect_folders: Vec<&'a str>,
|
2020-05-21 18:49:49 +02:00
|
|
|
}
|
|
|
|
|
|
2021-03-15 11:40:52 +01:00
|
|
|
impl<'a> Default for ZigConfig<'a> {
|
|
|
|
|
fn default() -> Self {
|
2020-05-21 18:49:49 +02:00
|
|
|
ZigConfig {
|
2021-01-22 18:08:36 +01:00
|
|
|
format: "via [$symbol($version )]($style)",
|
2021-04-29 23:22:20 +02:00
|
|
|
version_format: "v${raw}",
|
2020-07-08 06:45:32 +08:00
|
|
|
symbol: "↯ ",
|
|
|
|
|
style: "bold yellow",
|
2020-05-21 18:49:49 +02:00
|
|
|
disabled: false,
|
2021-02-14 22:21:44 +01:00
|
|
|
detect_extensions: vec!["zig"],
|
|
|
|
|
detect_files: vec![],
|
|
|
|
|
detect_folders: vec![],
|
2020-05-21 18:49:49 +02:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|