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

37
Cargo.lock generated
View File

@ -2014,7 +2014,7 @@ dependencies = [
"log 0.4.14",
"rustls 0.19.1",
"tokio",
"tokio-rustls",
"tokio-rustls 0.22.0",
"webpki 0.21.4",
]
@ -3758,7 +3758,7 @@ dependencies = [
"serde_urlencoded",
"tokio",
"tokio-native-tls",
"tokio-rustls",
"tokio-rustls 0.22.0",
"url 2.2.2",
"wasm-bindgen",
"wasm-bindgen-futures",
@ -4719,6 +4719,7 @@ dependencies = [
"bs58 0.4.0",
"clap 2.33.3",
"crossbeam-channel",
"futures-util",
"indicatif",
"jsonrpc-core",
"jsonrpc-http-server",
@ -4741,6 +4742,8 @@ dependencies = [
"solana-vote-program",
"thiserror",
"tokio",
"tokio-stream",
"tokio-tungstenite",
"tungstenite",
"url 2.2.2",
]
@ -4767,6 +4770,7 @@ dependencies = [
"solana-transaction-status",
"solana-version",
"systemstat",
"tokio",
]
[[package]]
@ -6821,6 +6825,17 @@ dependencies = [
"webpki 0.21.4",
]
[[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"
@ -6883,6 +6898,22 @@ dependencies = [
"tokio-io",
]
[[package]]
name = "tokio-tungstenite"
version = "0.16.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e80b39df6afcc12cdf752398ade96a6b9e99c903dfdc36e53ad10b9c366bca72"
dependencies = [
"futures-util",
"log 0.4.14",
"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.9"
@ -6930,7 +6961,7 @@ dependencies = [
"prost",
"prost-derive",
"tokio",
"tokio-rustls",
"tokio-rustls 0.22.0",
"tokio-stream",
"tokio-util",
"tower",

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"