installed_pkg

Crates.ioinstalled_pkg
lib.rsinstalled_pkg
version0.3.5
sourcesrc
created_at2024-07-23 08:53:51.116303
updated_at2024-07-29 02:14:40.057203
descriptionA simple cross-platform crate that lists all the apps installed on a system.
homepage
repositoryhttps://github.com/GuoJikun/installed_pkg
max_upload_size
id1312527
size46,192
_zhiqiu (GuoJikun)

documentation

README

installed_pkg

Under development, do not use for official environment.

A simple cross-platform crate that lists all the apps installed on a system.

Usage

add installed_pkg to your project Cargo.toml

cargo add installed_pkg
use installed_pkg::list as app_list;

fn main() {
    let installed = app_list();
    println!("apps: {:?}", installed.apps);
}

Supported platforms

Platform status
Windows Done
Macos Done
Linux come soon
Commit count: 0

cargo fmt