find_browsers

Crates.iofind_browsers
lib.rsfind_browsers
version0.1.2
sourcesrc
created_at2024-10-02 09:08:28.402589
updated_at2024-10-07 20:36:10.15357
descriptionA library for retrieving installed browsers (supports Windows and Linux).
homepage
repositoryhttps://github.com/icealtria/find_browsers
max_upload_size
id1393879
size8,003
(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.1"

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: 8

cargo fmt