appstream

Appstream files parser using Rust & quick-xml

Crates.io CI

Specifications: https://www.freedesktop.org/software/appstream/docs/

How to use ```rust use appstream::{Collection, Component};

let collection = Collection::frompath("/var/lib/flatpak/appstream/flathub/x8664/active/appstream.xml".into()).unwrap(); // Find a specific application by id println!("{:#?}", collection.findbyid("org.gnome.design.Contrast".into()));

// Find the list of gedit plugins collection.components.iter() .filter(|c| c.extends.contains(&"org.gnome.gedit".into())) .collect::>(); ```