Cargo.lock

This commit is contained in:
Michael Vines
2022-01-26 10:08:19 -08:00
parent 322304f1d0
commit 3fab5a3b14
2 changed files with 66 additions and 5 deletions

View File

@ -1367,7 +1367,7 @@ dependencies = [
"log",
"rustls 0.19.0",
"tokio",
"tokio-rustls",
"tokio-rustls 0.22.0",
"webpki 0.21.2",
]
@ -2271,7 +2271,7 @@ dependencies = [
"serde_json",
"serde_urlencoded",
"tokio",
"tokio-rustls",
"tokio-rustls 0.22.0",
"url",
"wasm-bindgen",
"wasm-bindgen-futures",
@ -3148,6 +3148,7 @@ dependencies = [
"bs58 0.4.0",
"clap",
"crossbeam-channel",
"futures-util",
"indicatif",
"jsonrpc-core",
"log",
@ -3168,6 +3169,8 @@ dependencies = [
"solana-vote-program",
"thiserror",
"tokio",
"tokio-stream",
"tokio-tungstenite",
"tungstenite",
"url",
]
@ -4083,6 +4086,17 @@ dependencies = [
"webpki 0.21.2",
]
[[package]]
name = "tokio-rustls"
version = "0.23.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a27d5f2b839802bd8267fa19b0530f5a08b9c08cd417976be2a65d130fe1c11b"
dependencies = [
"rustls 0.20.0",
"tokio",
"webpki 0.22.0",
]
[[package]]
name = "tokio-serde"
version = "0.8.0"
@ -4110,6 +4124,22 @@ dependencies = [
"tokio",
]
[[package]]
name = "tokio-tungstenite"
version = "0.16.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e80b39df6afcc12cdf752398ade96a6b9e99c903dfdc36e53ad10b9c366bca72"
dependencies = [
"futures-util",
"log",
"rustls 0.20.0",
"tokio",
"tokio-rustls 0.23.2",
"tungstenite",
"webpki 0.22.0",
"webpki-roots 0.22.1",
]
[[package]]
name = "tokio-util"
version = "0.6.4"