diff options
author | Divy Srivastava <dj.srivastava23@gmail.com> | 2023-04-29 22:39:18 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-29 22:39:18 +0530 |
commit | 64e072e499d36ca824db297a493667415ed67cdf (patch) | |
tree | 64be6ff136e915da75a45df6324c72f352db2fc5 | |
parent | 10664908474c262192aa7951cc1b54ee43a9c249 (diff) |
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
-rw-r--r-- | Cargo.lock | 4 | ||||
-rw-r--r-- | Cargo.toml | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/Cargo.lock b/Cargo.lock index 3fc8f0d68..93c7651ec 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 2ab1df922..f989fceb0 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" |