From d4893eb51a01c5a692d8ca74a3b8ff95c5fd1d9f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bartek=20Iwa=C5=84czuk?= Date: Wed, 10 Jan 2024 16:30:50 +0100 Subject: refactor: remove snapshotting from deno_runtime (#21794) Closes https://github.com/denoland/deno/issues/21137 --- cli/Cargo.toml | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) (limited to 'cli') diff --git a/cli/Cargo.toml b/cli/Cargo.toml index ae6a11398..beb1f0a74 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -39,10 +39,7 @@ __runtime_js_sources = ["deno_runtime/__runtime_js_sources"] __vendored_zlib_ng = ["flate2/zlib-ng-compat", "libz-sys/zlib-ng"] [build-dependencies] -# TODO(bartlomieju): should we not include `dont_create_runtime_snapshot` -# feature here and actually create the snapshot in `deno_runtime` build script? -# How do we pass options? -deno_runtime = { workspace = true, features = ["dont_create_runtime_snapshot", "include_js_files_for_snapshotting"] } +deno_runtime = { workspace = true, features = ["include_js_files_for_snapshotting"] } deno_core = { workspace = true, features = ["include_js_files_for_snapshotting"] } lazy-regex.workspace = true serde.workspace = true @@ -66,7 +63,7 @@ deno_graph = "=0.63.0" deno_lint = { version = "=0.53.0", features = ["docs"] } deno_lockfile.workspace = true deno_npm = "=0.15.3" -deno_runtime = { workspace = true, features = ["dont_create_runtime_snapshot", "include_js_files_for_snapshotting"] } +deno_runtime = { workspace = true, features = ["include_js_files_for_snapshotting"] } # todo(dsherret): investigate https://github.com/denoland/deno_semver/commit/98f9174baef199809295077b3b68c9fa58defb9b causing # lsp_completions_auto_import_and_quick_fix_with_import_map to fail when bumping this version deno_semver = "=0.5.1" -- cgit v1.2.3