https://github.com/overdrivenpotato/url_open
rust: open urls in the default browser
https://github.com/overdrivenpotato/url_open
Last synced: 7 months ago
JSON representation
rust: open urls in the default browser
- Host: GitHub
- URL: https://github.com/overdrivenpotato/url_open
- Owner: overdrivenpotato
- License: mit
- Created: 2015-09-13T22:28:37.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2021-12-03T20:43:01.000Z (over 4 years ago)
- Last Synced: 2025-04-01T06:01:47.535Z (about 1 year ago)
- Language: Rust
- Homepage:
- Size: 121 KB
- Stars: 5
- Watchers: 1
- Forks: 4
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# url_open
A simple crate to open URLs in the default web browser.
### Usage
```rust
extern crate url;
extern crate url_open;
use url::Url;
use url_open::UrlOpen;
fn main() {
Url::parse("https://github.com/overdrivenpotato/url_open").unwrap().open();
}
```