Open urls

This commit is contained in:
John Doty 2022-10-12 17:44:36 -07:00
parent e7946333ad
commit 006eba0dfe
3 changed files with 59 additions and 14 deletions

17
Cargo.lock generated
View file

@ -166,6 +166,7 @@ dependencies = [
"bytes",
"crossterm",
"log",
"open",
"procfs",
"thiserror",
"tokio",
@ -314,6 +315,16 @@ version = "1.15.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e82dad04139b71a90c080c8463fe0dc7902db5192d939bd0950f074d014339e1"
[[package]]
name = "open"
version = "3.0.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b4a3100141f1733ea40b53381b0ae3117330735ef22309a190ac57b9576ea716"
dependencies = [
"pathdiff",
"windows-sys",
]
[[package]]
name = "parking_lot"
version = "0.12.1"
@ -337,6 +348,12 @@ dependencies = [
"windows-sys",
]
[[package]]
name = "pathdiff"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8835116a5c179084a830efb3adc117ab007512b535bc1a21c991d3b32a6b44dd"
[[package]]
name = "pin-project-lite"
version = "0.2.9"