| Vulnerabilities | |||||
|---|---|---|---|---|---|
| Version | Suggest | Low | Medium | High | Critical |
| 5.3.4 | 0 | 0 | 0 | 0 | 0 |
| 5.3.3 | 0 | 0 | 0 | 0 | 0 |
| 5.3.2 | 0 | 0 | 0 | 0 | 0 |
| 5.3.1 | 0 | 0 | 0 | 0 | 0 |
| 5.3.0 | 0 | 0 | 0 | 0 | 0 |
| 5.2.0 | 0 | 0 | 0 | 0 | 0 |
| 5.1.4 | 0 | 0 | 0 | 0 | 0 |
| 5.1.3 | 0 | 0 | 0 | 0 | 0 |
| 5.1.2 | 0 | 0 | 0 | 0 | 0 |
| 5.1.1 | 0 | 0 | 0 | 0 | 0 |
| 5.1.0 | 0 | 0 | 0 | 0 | 0 |
| 5.0.2 | 0 | 0 | 0 | 0 | 0 |
| 5.0.1 | 0 | 0 | 0 | 0 | 0 |
| 5.0.0 | 0 | 0 | 0 | 0 | 0 |
| 4.2.0 | 0 | 0 | 0 | 0 | 0 |
| 4.1.0 | 0 | 0 | 0 | 0 | 0 |
| 4.0.2 | 0 | 0 | 0 | 0 | 0 |
| 4.0.1 | 0 | 0 | 0 | 0 | 0 |
| 4.0.0 | 0 | 0 | 0 | 0 | 0 |
| 3.4.0 | 0 | 0 | 0 | 0 | 0 |
| 3.3.0 | 0 | 0 | 0 | 0 | 0 |
| 3.2.0 | 0 | 0 | 0 | 0 | 0 |
| 3.1.0 | 0 | 0 | 0 | 0 | 0 |
| 3.0.3 | 0 | 0 | 0 | 0 | 0 |
| 3.0.2 | 0 | 0 | 0 | 0 | 0 |
| 3.0.1 | 0 | 0 | 0 | 0 | 0 |
| 3.0.0 | 0 | 0 | 0 | 0 | 0 |
| 2.1.3 | 0 | 0 | 0 | 0 | 0 |
| 2.1.2 | 0 | 0 | 0 | 0 | 0 |
| 2.1.1 | 0 | 0 | 0 | 0 | 0 |
| 2.1.0 | 0 | 0 | 0 | 0 | 0 |
| 2.0.3 | 0 | 0 | 0 | 0 | 0 |
| 2.0.2 | 0 | 0 | 0 | 0 | 0 |
| 2.0.1 | 0 | 0 | 0 | 0 | 0 |
| 2.0.0 | 0 | 0 | 0 | 0 | 0 |
| 1.7.1 | 0 | 0 | 0 | 0 | 0 |
| 1.7.0 | 0 | 0 | 0 | 0 | 0 |
| 1.6.0 | 0 | 0 | 0 | 0 | 0 |
| 1.5.1 | 0 | 0 | 0 | 0 | 0 |
| 1.5.0 | 0 | 0 | 0 | 0 | 0 |
| 1.4.0 | 0 | 0 | 0 | 0 | 0 |
| 1.3.4 | 0 | 0 | 0 | 0 | 0 |
| 1.3.3 | 0 | 0 | 0 | 0 | 0 |
| 1.3.2 | 0 | 0 | 0 | 0 | 0 |
| 1.3.1 | 0 | 0 | 0 | 0 | 0 |
| 1.3.0 | 0 | 0 | 0 | 0 | 0 |
| 1.2.3 | 0 | 0 | 0 | 0 | 0 |
| 1.2.2 | 0 | 0 | 0 | 0 | 0 |
| 1.2.1 | 0 | 0 | 0 | 0 | 0 |
| 1.2.0 | 0 | 0 | 0 | 0 | 0 |
| 1.1.1 | 0 | 0 | 0 | 0 | 0 |
| 1.1.0 | 0 | 0 | 0 | 0 | 0 |
| 1.0.3 | 0 | 0 | 0 | 0 | 0 |
| 1.0.2 | 0 | 0 | 0 | 0 | 0 |
| 1.0.1 | 0 | 0 | 0 | 0 | 0 |
| 1.0.0 | 0 | 0 | 0 | 0 | 0 |
5.3.4 - This version is safe to use because it has no known security vulnerabilities at this time. Find out if your coding project uses this component and get notified of any reported security vulnerabilities with Meterian-X Open Source Security Platform
Maintain your licence declarations and avoid unwanted licences to protect your IP the way you intended.
MIT - MIT LicenseUse this library to open a path or URL using the program configured on the system. It is equivalent to running one of the following:
# macOS
$ open <path-or-url>
# Windows
$ start <path-or-url>
# Linux
$ xdg-open <path-or-url> || gio open <path-or-url> || gnome-open <path-or-url> || kde-open <path-or-url> || wslview <path-or-url>To open a web browser, see the webbrowser crate, which offers functionality for that specific case.
Add this to your Cargo.toml
[dependencies]
open = "5"…and open something using…
open::that("https://rust-lang.org");…or, open something with an application of your choice
open::with("https://rust-lang.org", "firefox");Follow this link for the API docs.
This crate also implements a binary that acts like an opener itself.
cargo run 'file to open'The implementation is based on the respective functionality of Cargo, but was improved to allow some error handling.