From 64e072e499d36ca824db297a493667415ed67cdf Mon Sep 17 00:00:00 2001 From: Divy Srivastava Date: Sat, 29 Apr 2023 22:39:18 +0530 Subject: [PATCH] fix(ext/websocket): update fastwebsockets to 0.3.1 (#18916) Fixes https://github.com/denoland/deno/issues/18912 Fixes https://github.com/denoland/deno/issues/18808 --- Cargo.lock | 4 ++-- Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 3fc8f0d688..93c7651ec9 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1850,9 +1850,9 @@ dependencies = [ [[package]] name = "fastwebsockets" -version = "0.2.6" +version = "0.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2fbc4aeb6c0ab927a93b5e5fc70d4c7f834260fc414021ac40c58d046ea0e394" +checksum = "1925eb5ee48fffa504a9edce24b3b4d43e2809d1cc713a1df2b13a46e661b3c6" dependencies = [ "base64 0.21.0", "cc", diff --git a/Cargo.toml b/Cargo.toml index 2ab1df9223..f989fceb04 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -91,7 +91,7 @@ data-url = "=0.2.0" dlopen = "0.1.8" encoding_rs = "=0.8.31" ecb = "=0.1.1" -fastwebsockets = "=0.2.6" +fastwebsockets = "=0.3.1" flate2 = "=1.0.24" fs3 = "0.5.0" futures = "0.3.21"