summaryrefslogtreecommitdiff
path: root/runtime/Cargo.toml
diff options
context:
space:
mode:
Diffstat (limited to 'runtime/Cargo.toml')
-rw-r--r--runtime/Cargo.toml6
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"