diff options
| author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2023-06-08 12:55:33 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-06-08 12:55:33 +0200 |
| commit | 0197f42e6bd77c9bd6f14afd9523c4c252aa099b (patch) | |
| tree | 8ba7aa753cfb702a897a9730e3cb8afca54b75ca /ext/websocket/Cargo.toml | |
| parent | dd6458b30a4c1ecf4fab1eaffb4563734c5df284 (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.toml | 1 |
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 |
