From 8f9becee76f26db7893caabb9f3a1a7980791e0e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bartek=20Iwa=C5=84czuk?= Date: Thu, 16 Mar 2023 23:19:46 -0400 Subject: perf: disable runtime snapshot compression (#18239) This commit removes compression for the runtime JS code. It means that we will have a bigger binary, but faster startup. After several discussion in the CLI team we decided it's worth to trade about 3Mb of binary size for 2ms faster startup time. With WebGPU removed in 35196eab279340376929dd75ed717ef4830e2fa9 it shouldn't have such a big impact on the binary size. --- runtime/Cargo.toml | 3 --- 1 file changed, 3 deletions(-) (limited to 'runtime/Cargo.toml') diff --git a/runtime/Cargo.toml b/runtime/Cargo.toml index eeee6dad6..50fedcaa1 100644 --- a/runtime/Cargo.toml +++ b/runtime/Cargo.toml @@ -55,8 +55,6 @@ deno_websocket.workspace = true deno_webstorage.workspace = true deno_napi.workspace = true -lzzzz.workspace = true - [target.'cfg(windows)'.build-dependencies] winres.workspace = true winapi.workspace = true @@ -93,7 +91,6 @@ http.workspace = true hyper = { workspace = true, features = ["server", "stream", "http1", "http2", "runtime"] } libc.workspace = true log.workspace = true -lzzzz.workspace = true netif = "0.1.6" notify.workspace = true once_cell.workspace = true -- cgit v1.2.3