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", "log 0.4.14",
"rustls 0.19.1", "rustls 0.19.1",
"tokio", "tokio",
"tokio-rustls", "tokio-rustls 0.22.0",
"webpki 0.21.4", "webpki 0.21.4",
] ]
@ -3758,7 +3758,7 @@ dependencies = [
"serde_urlencoded", "serde_urlencoded",
"tokio", "tokio",
"tokio-native-tls", "tokio-native-tls",
"tokio-rustls", "tokio-rustls 0.22.0",
"url 2.2.2", "url 2.2.2",
"wasm-bindgen", "wasm-bindgen",
"wasm-bindgen-futures", "wasm-bindgen-futures",
@ -4719,6 +4719,7 @@ dependencies = [
"bs58 0.4.0", "bs58 0.4.0",
"clap 2.33.3", "clap 2.33.3",
"crossbeam-channel", "crossbeam-channel",
"futures-util",
"indicatif", "indicatif",
"jsonrpc-core", "jsonrpc-core",
"jsonrpc-http-server", "jsonrpc-http-server",
@ -4741,6 +4742,8 @@ dependencies = [
"solana-vote-program", "solana-vote-program",
"thiserror", "thiserror",
"tokio", "tokio",
"tokio-stream",
"tokio-tungstenite",
"tungstenite", "tungstenite",
"url 2.2.2", "url 2.2.2",
] ]
@ -4767,6 +4770,7 @@ dependencies = [
"solana-transaction-status", "solana-transaction-status",
"solana-version", "solana-version",
"systemstat", "systemstat",
"tokio",
] ]
[[package]] [[package]]
@ -6821,6 +6825,17 @@ dependencies = [
"webpki 0.21.4", "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]] [[package]]
name = "tokio-serde" name = "tokio-serde"
version = "0.8.0" version = "0.8.0"
@ -6883,6 +6898,22 @@ dependencies = [
"tokio-io", "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]] [[package]]
name = "tokio-util" name = "tokio-util"
version = "0.6.9" version = "0.6.9"
@ -6930,7 +6961,7 @@ dependencies = [
"prost", "prost",
"prost-derive", "prost-derive",
"tokio", "tokio",
"tokio-rustls", "tokio-rustls 0.22.0",
"tokio-stream", "tokio-stream",
"tokio-util", "tokio-util",
"tower", "tower",

View File

@ -1367,7 +1367,7 @@ dependencies = [
"log", "log",
"rustls 0.19.0", "rustls 0.19.0",
"tokio", "tokio",
"tokio-rustls", "tokio-rustls 0.22.0",
"webpki 0.21.2", "webpki 0.21.2",
] ]
@ -2271,7 +2271,7 @@ dependencies = [
"serde_json", "serde_json",
"serde_urlencoded", "serde_urlencoded",
"tokio", "tokio",
"tokio-rustls", "tokio-rustls 0.22.0",
"url", "url",
"wasm-bindgen", "wasm-bindgen",
"wasm-bindgen-futures", "wasm-bindgen-futures",
@ -3148,6 +3148,7 @@ dependencies = [
"bs58 0.4.0", "bs58 0.4.0",
"clap", "clap",
"crossbeam-channel", "crossbeam-channel",
"futures-util",
"indicatif", "indicatif",
"jsonrpc-core", "jsonrpc-core",
"log", "log",
@ -3168,6 +3169,8 @@ dependencies = [
"solana-vote-program", "solana-vote-program",
"thiserror", "thiserror",
"tokio", "tokio",
"tokio-stream",
"tokio-tungstenite",
"tungstenite", "tungstenite",
"url", "url",
] ]
@ -4083,6 +4086,17 @@ dependencies = [
"webpki 0.21.2", "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]] [[package]]
name = "tokio-serde" name = "tokio-serde"
version = "0.8.0" version = "0.8.0"
@ -4110,6 +4124,22 @@ dependencies = [
"tokio", "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]] [[package]]
name = "tokio-util" name = "tokio-util"
version = "0.6.4" version = "0.6.4"