Browsers

This crate is a quick and easy way to find what browsers are installed on an operating system (supports MacOS, Windows and Linux).

Usage

You can use the crate easily by one of two methods:

```rust use browsers::{Browser, BrowserKind, getbrowserpath, get_browsers};

// find all browser installations on the system let browsers: Vec = get_browsers();

// find a specific browser installation path let path: PathBuf = getbrowserpath(BrowserKind::Chrome) .expect("failed to find browser installation"); ```