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",
]

View file

@ -34,7 +34,7 @@ privdrop = "0.5"
rand = { version = "0.8", features = ["small_rng"] }
serde = { version = "1", features = ["derive"] }
socket2 = { version = "0.3", features = ["reuseport"] }
tungstenite = "0.12"
tungstenite = "0.13"
[dev-dependencies]
quickcheck = "1.0"

View file

@ -21,7 +21,7 @@ rand_distr = "0.4"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
slab = "0.4"
tungstenite = "0.12"
tungstenite = "0.13"
[dev-dependencies]
quickcheck = "1.0"

View file

@ -22,7 +22,7 @@ hashbrown = { version = "0.9", features = ["serde"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
simd-json = { version = "0.3", features = ["allow-non-simd"] }
tungstenite = "0.12"
tungstenite = "0.13"
[dev-dependencies]
criterion = "0.3"