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 /runtime/Cargo.toml | |
| parent | 0234eb23ddfe0a5ff9402610a2f3bd326c325ec6 (diff) | |
refactor: remove snapshotting from deno_runtime (#21794)
Closes https://github.com/denoland/deno/issues/21137
Diffstat (limited to 'runtime/Cargo.toml')
| -rw-r--r-- | runtime/Cargo.toml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/runtime/Cargo.toml b/runtime/Cargo.toml index 95a00c9cc..223c42ffb 100644 --- a/runtime/Cargo.toml +++ b/runtime/Cargo.toml @@ -12,8 +12,8 @@ description = "Provides the deno runtime library" [features] # "fake" feature that allows to generate docs on docs.rs docsrs = [] -# A feature that disables creation of startup snapshot during in the build script. -dont_create_runtime_snapshot = [] +# A feature that disables the requirement for startup snapshot to be provided. +dont_use_runtime_snapshot = [] # A feature that allows excluding `./js/99_main.js` from the exported extension. exclude_runtime_main_js = [] # A feature that disables embedding of the JavaScript source files in the binary. @@ -24,7 +24,7 @@ include_js_files_for_snapshotting = [ ] # A dev feature to disable creations and loading of snapshots in favor of # loading JS sources at runtime. -__runtime_js_sources = ["dont_create_runtime_snapshot"] +__runtime_js_sources = [] [lib] name = "deno_runtime" |
