Crates.io | browsers |
lib.rs | browsers |
version | 0.1.2 |
source | src |
created_at | 2023-05-02 10:37:45.313243 |
updated_at | 2023-07-15 19:20:46.658535 |
description | This crate is a quick and easy way to find what browsers are installed on an operating system (supports MacOS, Windows and Linux). |
homepage | |
repository | https://github.com/jad3n/browsers |
max_upload_size | |
id | 854392 |
size | 5,681 |
This crate is a quick and easy way to find what browsers are installed on an operating system (supports MacOS, Windows and Linux).
You can use the crate easily by one of two methods:
use browsers::{Browser, BrowserKind, get_browser_path, get_browsers};
// find all browser installations on the system
let browsers: Vec<Browser> = get_browsers();
// find a specific browser installation path
let path: PathBuf = get_browser_path(BrowserKind::Chrome)
.expect("failed to find browser installation");