summaryrefslogtreecommitdiff
path: root/ext/websocket/Cargo.toml
diff options
context:
space:
mode:
authorBartek IwaƄczuk <biwanczuk@gmail.com>2023-06-08 12:55:33 +0200
committerGitHub <noreply@github.com>2023-06-08 12:55:33 +0200
commit0197f42e6bd77c9bd6f14afd9523c4c252aa099b (patch)
tree8ba7aa753cfb702a897a9730e3cb8afca54b75ca /ext/websocket/Cargo.toml
parentdd6458b30a4c1ecf4fab1eaffb4563734c5df284 (diff)
perf: use sendto syscalls (#19414)
This switches syscall used in HTTP and WS server from "writev" to "sendto". "DENO_USE_WRITEV=1" can be used to enable using "writev" syscall. Doing this for easier testing of various setups.
Diffstat (limited to 'ext/websocket/Cargo.toml')
-rw-r--r--ext/websocket/Cargo.toml1
1 files changed, 1 insertions, 0 deletions
diff --git a/ext/websocket/Cargo.toml b/ext/websocket/Cargo.toml
index 1ac465f69..324a2b1a4 100644
--- a/ext/websocket/Cargo.toml
+++ b/ext/websocket/Cargo.toml
@@ -21,6 +21,7 @@ deno_tls.workspace = true
fastwebsockets = { workspace = true, features = ["upgrade"] }
http.workspace = true
hyper = { workspace = true, features = ["backports"] }
+once_cell.workspace = true
serde.workspace = true
tokio.workspace = true
tokio-rustls.workspace = true