fix: bump to tokio-tungstenite 13.0
This commit is contained in:
parent
9a9f4523e0
commit
25f6bdff22
|
@ -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",
|
||||
|
|
|
@ -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" }
|
||||
|
|
Loading…
Reference in New Issue