installed_pkg 0.3.5

A simple cross-platform crate that lists all the apps installed on a system.
Documentation
1
2
3
4
5
6
pub mod platform;
pub use platform::Installed;

pub fn list() -> Result<Installed, String> {
    Ok(Installed::new())
}