clap-utils: Use uriparse crate to parse SignerSource

This commit is contained in:
Trent Nelson
2021-04-15 01:01:58 -06:00
committed by Trent Nelson
parent c5ab3ba6f1
commit 5d1ef5d01d
4 changed files with 69 additions and 10 deletions

View File

@ -2994,6 +2994,7 @@ dependencies = [
"solana-sdk",
"thiserror",
"tiny-bip39",
"uriparse",
"url",
]
@ -4244,6 +4245,16 @@ version = "0.7.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a156c684c91ea7d62626509bce3cb4e1d9ed5c4d978f7b4352658f96a4c26b4a"
[[package]]
name = "uriparse"
version = "0.6.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e515b1ada404168e145ac55afba3c42f04cf972201a8552d42e2abb17c1b7221"
dependencies = [
"fnv",
"lazy_static",
]
[[package]]
name = "url"
version = "2.2.1"