From 25f6bdff22c13abb35f91fc9e170c78de646b4bb Mon Sep 17 00:00:00 2001 From: Georgios Konstantopoulos Date: Sun, 10 Jan 2021 12:05:12 +0200 Subject: [PATCH] fix: bump to tokio-tungstenite 13.0 --- Cargo.lock | 13 ++++++++----- ethers-providers/Cargo.toml | 2 +- 2 files changed, 9 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 4896fd26..58b273c6 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1163,7 +1163,8 @@ dependencies = [ [[package]] name = "input_buffer" version = "0.4.0" -source = "git+https://github.com/snapview/input_buffer.git#e04d16751485f14c024b332658a1ce683af2c384" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f97967975f448f1a7ddb12b0bc41069d09ed6a1c161a92687e057325db35d413" dependencies = [ "bytes 1.0.0", ] @@ -2240,8 +2241,9 @@ dependencies = [ [[package]] name = "tokio-tungstenite" -version = "0.12.0" -source = "git+https://github.com/dnaka91/tokio-tungstenite?branch=tokio-1.0#078a227476d90bfd3ef68a70d0b78148a489dc26" +version = "0.13.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e1a5f475f1b9d077ea1017ecbc60890fda8e54942d680ca0b1d2b47cfa2d861b" dependencies = [ "futures-util", "log", @@ -2311,8 +2313,9 @@ checksum = "59547bce71d9c38b83d9c0e92b6066c4253371f15005def0c30d9657f50c7642" [[package]] name = "tungstenite" -version = "0.11.1" -source = "git+https://github.com/snapview/tungstenite-rs.git?rev=208061ba284eaf95a54c1b9b6968f570004c90de#208061ba284eaf95a54c1b9b6968f570004c90de" +version = "0.12.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8ada8297e8d70872fa9a551d93250a9f407beb9f37ef86494eb20012a2ff7c24" dependencies = [ "base64", "byteorder", diff --git a/ethers-providers/Cargo.toml b/ethers-providers/Cargo.toml index b31eb0e0..464a18f0 100644 --- a/ethers-providers/Cargo.toml +++ b/ethers-providers/Cargo.toml @@ -37,7 +37,7 @@ tracing-futures = { version = "0.2.4", default-features = false } # tokio tokio = { version = "1.0", default-features = false, optional = true } -tokio-tungstenite = { git = "https://github.com/dnaka91/tokio-tungstenite", branch = "tokio-1.0", default-features = false, features = ["connect", "tls"], optional = true } +tokio-tungstenite = { version = "0.13.0", default-features = false, features = ["connect", "tls"], optional = true } [dev-dependencies] ethers = { version = "0.1.3", path = "../ethers" }