2022-03-26 10:42:19 +01:00
|
|
|
use serde::{Deserialize, Serialize};
|
2020-06-09 10:14:47 -07:00
|
|
|
|
2022-03-26 10:42:19 +01:00
|
|
|
#[derive(Clone, Deserialize, Serialize)]
|
2022-04-01 17:14:05 +02:00
|
|
|
#[cfg_attr(feature = "config-schema", derive(schemars::JsonSchema))]
|
2022-03-26 10:42:19 +01:00
|
|
|
#[serde(default)]
|
2020-06-09 10:14:47 -07:00
|
|
|
pub struct NimConfig<'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-06-09 10:14:47 -07:00
|
|
|
pub disabled: bool,
|
2021-02-21 21:21:20 +09:00
|
|
|
pub detect_extensions: Vec<&'a str>,
|
|
|
|
pub detect_files: Vec<&'a str>,
|
|
|
|
pub detect_folders: Vec<&'a str>,
|
2020-06-09 10:14:47 -07:00
|
|
|
}
|
|
|
|
|
2021-03-15 11:40:52 +01:00
|
|
|
impl<'a> Default for NimConfig<'a> {
|
|
|
|
fn default() -> Self {
|
2020-06-09 10:14:47 -07:00
|
|
|
NimConfig {
|
2021-01-20 18:46:26 +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: "yellow bold",
|
2020-06-09 10:14:47 -07:00
|
|
|
disabled: false,
|
2021-02-21 21:21:20 +09:00
|
|
|
detect_extensions: vec!["nim", "nims", "nimble"],
|
|
|
|
detect_files: vec!["nim.cfg"],
|
|
|
|
detect_folders: vec![],
|
2020-06-09 10:14:47 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|