settings: blacklist isn't required

rocket-stable
Antoine Martin 2021-03-31 18:57:50 +02:00
parent 6a79949e28
commit e68fcf3e52
1 changed files with 1 additions and 1 deletions

View File

@ -12,6 +12,6 @@ pub(crate) struct GlobalSettings {
pub additional_remotes: Vec<RepoUrl>,
/// List of regexes, if a repository's name matches any of the, it is not mirrored by `lohr`
/// even if it contains a `.lorh` file.
#[serde(with = "serde_regex")]
#[serde(with = "serde_regex", default)]
pub blacklist: Vec<regex::Regex>,
}