Remove appstream from Specs and Package structs

This commit is contained in:
Nathan Fisher 2023-04-10 18:41:23 -04:00
parent 89d36281e3
commit 43d8c82c08
2 changed files with 0 additions and 9 deletions

View File

@ -45,10 +45,6 @@ pub struct Package {
pub description: String,
/// a more verbose description of the package
pub long_description: String,
/// an optional link to an
/// [AppStream](https://www.freedesktop.org/wiki/Distributions/AppStream/)
/// metadata file
pub appstream_data: Option<String>,
/// a listing of all files, directories and symlinks which are a part of
/// this package
pub plist: Plist,
@ -72,7 +68,6 @@ impl From<Specs> for Package {
release: value.release,
description: value.description,
long_description: value.long_description,
appstream_data: value.appstream_data,
dependencies: value.dependencies,
users: value.users,
groups: value.groups,

View File

@ -16,10 +16,6 @@ pub struct Specs {
pub description: String,
/// a more verbose description of the package
pub long_description: String,
/// an optional link to an
/// [AppStream](https://www.freedesktop.org/wiki/Distributions/AppStream/)
/// metadata file
pub appstream_data: Option<String>,
/// all of this package's runtime dependencies
pub dependencies: Vec<Dependency>,
/// an optional list of users to be created upon installation