feat: add 'games' to the manifest

This commit is contained in:
2025-04-19 20:09:32 +00:00
parent 3479804dca
commit dbbd80c6c3
5 changed files with 39 additions and 29 deletions

View File

@ -14,7 +14,10 @@ pub struct PackageManifest {
pub dependencies: BTreeSet<PkgKeyVersion>,
#[serde(default)]
pub installers: Vec<BTreeMap<String, serde_json::Value>>
pub installers: Vec<BTreeMap<String, serde_json::Value>>,
#[serde(default)]
pub games: Option<Vec<Game>>,
}
pub type PackageList = BTreeMap<PkgKey, PackageListEntry>;