2022-03-26 09:42:19 +00:00
|
|
|
use serde::{Deserialize, Serialize};
|
2020-07-09 19:40:33 +00:00
|
|
|
|
2022-03-26 09:42:19 +00:00
|
|
|
#[derive(Clone, Deserialize, Serialize)]
|
2022-09-09 12:59:38 +00:00
|
|
|
#[cfg_attr(
|
|
|
|
feature = "config-schema",
|
|
|
|
derive(schemars::JsonSchema),
|
|
|
|
schemars(deny_unknown_fields)
|
|
|
|
)]
|
2022-03-26 09:42:19 +00:00
|
|
|
#[serde(default)]
|
2020-07-09 19:40:33 +00:00
|
|
|
pub struct CMakeConfig<'a> {
|
|
|
|
pub format: &'a str,
|
2021-04-29 21:22:20 +00:00
|
|
|
pub version_format: &'a str,
|
2020-07-09 19:40:33 +00:00
|
|
|
pub symbol: &'a str,
|
|
|
|
pub style: &'a str,
|
|
|
|
pub disabled: bool,
|
2021-02-13 10:38:47 +00:00
|
|
|
pub detect_extensions: Vec<&'a str>,
|
|
|
|
pub detect_files: Vec<&'a str>,
|
|
|
|
pub detect_folders: Vec<&'a str>,
|
2020-07-09 19:40:33 +00:00
|
|
|
}
|
|
|
|
|
2021-03-15 10:40:52 +00:00
|
|
|
impl<'a> Default for CMakeConfig<'a> {
|
|
|
|
fn default() -> Self {
|
2020-07-09 19:40:33 +00:00
|
|
|
CMakeConfig {
|
2021-01-16 12:27:02 +00:00
|
|
|
format: "via [$symbol($version )]($style)",
|
2021-04-29 21:22:20 +00:00
|
|
|
version_format: "v${raw}",
|
2021-03-15 10:27:54 +00:00
|
|
|
symbol: "△ ",
|
2020-07-09 19:40:33 +00:00
|
|
|
style: "bold blue",
|
|
|
|
disabled: false,
|
2021-02-13 10:38:47 +00:00
|
|
|
detect_extensions: vec![],
|
|
|
|
detect_files: vec!["CMakeLists.txt", "CMakeCache.txt"],
|
|
|
|
detect_folders: vec![],
|
2020-07-09 19:40:33 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|