#browser #installed #retrieving #find

find_browsers

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

4 releases

new 0.2.0 Nov 22, 2024
0.1.2 Oct 7, 2024
0.1.1 Oct 2, 2024
0.1.0 Oct 2, 2024

#301 in Operating systems

Download history 257/week @ 2024-09-29 208/week @ 2024-10-06 19/week @ 2024-10-13 1/week @ 2024-10-20 3/week @ 2024-11-03 128/week @ 2024-11-17

131 downloads per month

MIT license

10KB
202 lines

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);
    }
}

Dependencies

~0–9.5MB
~47K SLoC