diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2024-01-10 16:30:50 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-10 16:30:50 +0100 |
commit | d4893eb51a01c5a692d8ca74a3b8ff95c5fd1d9f (patch) | |
tree | 1a3c4936403dfaeed7c2b4c8711d75ba53ffb72e /cli | |
parent | 0234eb23ddfe0a5ff9402610a2f3bd326c325ec6 (diff) |
refactor: remove snapshotting from deno_runtime (#21794)
Closes https://github.com/denoland/deno/issues/21137
Diffstat (limited to 'cli')
-rw-r--r-- | cli/Cargo.toml | 7 |
1 files changed, 2 insertions, 5 deletions
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" |