Deps: Update async-tungstenite -> 0.12

This is a non-breaking change, since WsError is private.
This commit is contained in:
Kyle Simpson
2021-02-10 13:58:56 +00:00
parent 0e860dc29d
commit a40fac3109
2 changed files with 3 additions and 1 deletions

View File

@@ -195,6 +195,7 @@ pub(crate) async fn create_rustls_client(url: Url) -> Result<WsStream> {
max_message_size: None,
max_frame_size: None,
max_send_queue: None,
..Default::default()
}),
)
.await
@@ -212,6 +213,7 @@ pub(crate) async fn create_native_tls_client(url: Url) -> Result<WsStream> {
max_message_size: None,
max_frame_size: None,
max_send_queue: None,
..Default::default()
}),
)
.await?;