net: Update to async-tungstenite 0.19

Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs/-/merge_requests/1005>
This commit is contained in:
Sebastian Dröge 2022-12-11 12:54:24 +02:00
parent 1ffadbc270
commit fb42cd8a0f
3 changed files with 3 additions and 3 deletions

View file

@ -28,7 +28,7 @@ chrono = "0.4"
url = "2"
percent-encoding = "2"
tokio = { version = "1.0", features = [ "full" ] }
async-tungstenite = { version = "0.18", features = ["tokio", "tokio-runtime", "tokio-native-tls"] }
async-tungstenite = { version = "0.19", features = ["tokio", "tokio-runtime", "tokio-native-tls"] }
nom = "7"
crc = "3"
byteorder = "1.3.4"

View file

@ -22,7 +22,7 @@ thiserror = "1"
futures = "0.3"
async-std = { version = "1", features = ["unstable"] }
async-native-tls = { version = "0.4.0" }
async-tungstenite = { version = "0.18", features = ["async-std-runtime", "async-native-tls"] }
async-tungstenite = { version = "0.19", features = ["async-std-runtime", "async-native-tls"] }
serde = "1"
serde_json = "1"
fastrand = "1.0"

View file

@ -12,7 +12,7 @@ rust-version = "1.63"
anyhow = "1"
async-std = { version = "1", features = ["unstable", "attributes"] }
async-native-tls = "0.4"
async-tungstenite = { version = "0.18", features = ["async-std-runtime", "async-native-tls"] }
async-tungstenite = { version = "0.19", features = ["async-std-runtime", "async-native-tls"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
clap = { version = "4", features = ["derive"] }