diff options
| author | Matt Mastracci <matthew@mastracci.com> | 2023-10-31 09:34:45 -0600 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-10-31 09:34:45 -0600 |
| commit | e4308aebc0a060e7210362e576e792e558384c24 (patch) | |
| tree | fe3a39fe85669d1fb55811e001f6cacefdadd561 /ext/websocket/Cargo.toml | |
| parent | edee8ab95d28abfce5606ab35e02b7c7ace2cf8d (diff) | |
feat(ext/websocket): use rustls-tokio-stream instead of tokio-rustls (#20518)
Use new https://github.com/denoland/rustls-tokio-stream project instead
of tokio-rustls for direct websocket connections. This library was
written from the ground up to be more reliable and should help with
various bugs that may occur due to underlying bugs in the old library.
Believed to fix #20355, #18977, #20948
Diffstat (limited to 'ext/websocket/Cargo.toml')
| -rw-r--r-- | ext/websocket/Cargo.toml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/websocket/Cargo.toml b/ext/websocket/Cargo.toml index 7dd7a9afe..da29203c4 100644 --- a/ext/websocket/Cargo.toml +++ b/ext/websocket/Cargo.toml @@ -22,6 +22,6 @@ fastwebsockets = { workspace = true, features = ["upgrade", "unstable-split"] } http.workspace = true hyper = { workspace = true, features = ["backports"] } once_cell.workspace = true +rustls-tokio-stream.workspace = true serde.workspace = true tokio.workspace = true -tokio-rustls.workspace = true |
