find_browsers
A library for retrieving installed browsers (supports Windows and Linux).
Installation
Add the following to your Cargo.toml
:
[]
= "0.1.2"
Usage
use get_browsers;
A library for retrieving installed browsers (supports Windows and Linux).
Add the following to your Cargo.toml
:
[dependencies]
find_browsers = "0.1.2"
use find_browsers::get_browsers;
fn main() {
let browsers = get_browsers().unwrap();
for browser in browsers {
println!("Found browser: {} at {:?}", browser.name, browser.exec);
}
}