Update tungstenite to version 0.13

This commit is contained in:
Joakim Frostegård 2021-02-10 18:29:41 +01:00
parent 7aad1a276e
commit f728669401
4 changed files with 26 additions and 5 deletions

25
Cargo.lock generated
View file

@ -1637,6 +1637,26 @@ dependencies = [
"unicode-width",
]
[[package]]
name = "thiserror"
version = "1.0.23"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "76cc616c6abf8c8928e2fdcc0dbfab37175edd8fb49a4641066ad1364fdab146"
dependencies = [
"thiserror-impl",
]
[[package]]
name = "thiserror-impl"
version = "1.0.23"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9be73a2caec27583d0046ef3796c3794f868a5bc813db689eed00c7631275cd1"
dependencies = [
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "thread_local"
version = "1.1.3"
@ -1692,9 +1712,9 @@ dependencies = [
[[package]]
name = "tungstenite"
version = "0.12.0"
version = "0.13.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8ada8297e8d70872fa9a551d93250a9f407beb9f37ef86494eb20012a2ff7c24"
checksum = "5fe8dada8c1a3aeca77d6b51a4f1314e0f4b8e438b7b1b71e3ddaca8080e4093"
dependencies = [
"base64",
"byteorder",
@ -1706,6 +1726,7 @@ dependencies = [
"native-tls",
"rand",
"sha-1",
"thiserror",
"url",
"utf-8",
]