summaryrefslogtreecommitdiff
path: root/ext/websocket
diff options
context:
space:
mode:
authorBartek IwaƄczuk <biwanczuk@gmail.com>2023-04-22 11:17:31 +0200
committerGitHub <noreply@github.com>2023-04-22 11:17:31 +0200
commit068228cb454d14a6f5943061a5a6569b9e395e23 (patch)
tree4b62ba7df771ac6dc32c70273e397e863f84dc05 /ext/websocket
parenta615eb3b56545960ec9684991442dd34a8b2abfc (diff)
refactor: rewrite tests to "fastwebsockets" crate (#18781)
Migrating off of `tokio-tungstenite` crate. --------- Co-authored-by: Divy Srivastava <dj.srivastava23@gmail.com>
Diffstat (limited to 'ext/websocket')
-rw-r--r--ext/websocket/Cargo.toml2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/websocket/Cargo.toml b/ext/websocket/Cargo.toml
index a96b6cceb..53e184e1e 100644
--- a/ext/websocket/Cargo.toml
+++ b/ext/websocket/Cargo.toml
@@ -16,7 +16,7 @@ path = "lib.rs"
[dependencies]
deno_core.workspace = true
deno_tls.workspace = true
-fastwebsockets = { version = "0.2.4", features = ["upgrade"] }
+fastwebsockets = { workspace = true, features = ["upgrade"] }
http.workspace = true
hyper.workspace = true
serde.workspace = true