find_browsers

Crates.iofind_browsers
lib.rsfind_browsers
version0.2.0
sourcesrc
created_at2024-10-02 09:08:28.402589
updated_at2024-11-22 06:24:22.666109
descriptionA library for retrieving installed browsers (supports Windows and Linux).
homepage
repositoryhttps://github.com/icealtria/find_browsers
max_upload_size
id1393879
size9,297
(icealtria)

documentation

README

find_browsers

A library for retrieving installed browsers (supports Windows and Linux).

Installation

Add the following to your Cargo.toml:

[dependencies]
find_browsers = "0.1.2"

Usage

use find_browsers::get_browsers;

fn main() {
    let browsers = get_browsers().unwrap();
    for browser in browsers {
        println!("Found browser: {} at {:?}", browser.name, browser.exec);
    }
}
Commit count: 9

cargo fmt