Crates.io | url_open |
lib.rs | url_open |
version | 0.0.2 |
source | src |
created_at | 2019-11-17 13:10:21.108418 |
updated_at | 2023-04-20 19:49:23.289457 |
description | Open URLs in the default browser |
homepage | |
repository | https://github.com/overdrivenpotato/open-url |
max_upload_size | |
id | 181988 |
size | 6,892 |
A simple crate to open URLs in the default web browser.
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();
}