Make the all field of Selection public

This commit is contained in:
Omar Abdulla
2025-07-25 14:54:16 +03:00
parent 56aadce0a9
commit 425e970eb1
@@ -14,7 +14,7 @@ use self::file::File as FileSelection;
pub struct Selection {
/// Only the 'all' wildcard is available for robustness reasons.
#[serde(rename = "*", skip_serializing_if = "Option::is_none")]
all: Option<FileSelection>,
pub all: Option<FileSelection>,
#[serde(skip_serializing_if = "BTreeMap::is_empty", flatten)]
pub files: BTreeMap<String, FileSelection>,