mirror of
https://github.com/denoland/deno.git
synced 2024-12-26 09:10:40 -05:00
cd61c01545
Remove `ExtensionFileSourceCode::LoadedFromFsDuringSnapshot` and feature `include_js_for_snapshotting` since they leak paths that are only applicable in this repo to embedders. Replace with feature `exclude_js_sources`. Additionally the feature `force_include_js_sources` allows negating it, if both features are set. We need both of these because features are additive and there must be a way of force including sources for snapshot creation while still having the `exclude_js_sources` feature. `force_include_js_sources` is only set for build deps, so sources are still excluded from the final binary. You can also specify `force_include_js_sources` on any extension to override the above features for that extension. Towards #19398. But there was still the snapshot-from-snapshot situation where code could be executed twice, I addressed that by making `mod_evaluate()` and scripts like `core/01_core.js` behave idempotently. This allowed unifying `ext::init_ops()` and `ext::init_ops_and_esm()` into `ext::init()`.
117 lines
3.1 KiB
TOML
117 lines
3.1 KiB
TOML
# Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
|
|
|
|
[package]
|
|
name = "deno_runtime"
|
|
version = "0.116.0"
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
repository.workspace = true
|
|
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 = []
|
|
# Enable to exclude `js/99_main.js` from the generated snapshot.
|
|
exclude_js_main_from_snapshot = []
|
|
|
|
[lib]
|
|
name = "deno_runtime"
|
|
path = "lib.rs"
|
|
|
|
[[example]]
|
|
name = "extension_with_esm"
|
|
path = "examples/extension_with_esm/main.rs"
|
|
|
|
[[example]]
|
|
name = "extension_with_ops"
|
|
path = "examples/extension_with_ops/main.rs"
|
|
|
|
[build-dependencies]
|
|
deno_ast.workspace = true
|
|
deno_broadcast_channel.workspace = true
|
|
deno_cache.workspace = true
|
|
deno_console.workspace = true
|
|
deno_core.workspace = true
|
|
deno_crypto.workspace = true
|
|
deno_fetch.workspace = true
|
|
deno_ffi.workspace = true
|
|
deno_fs = { workspace = true, features = ["sync_fs"] }
|
|
deno_http.workspace = true
|
|
deno_io.workspace = true
|
|
deno_net.workspace = true
|
|
deno_node.workspace = true
|
|
deno_kv.workspace = true
|
|
deno_tls.workspace = true
|
|
deno_url.workspace = true
|
|
deno_web.workspace = true
|
|
deno_webidl.workspace = true
|
|
deno_websocket.workspace = true
|
|
deno_webstorage.workspace = true
|
|
deno_napi.workspace = true
|
|
|
|
[target.'cfg(windows)'.build-dependencies]
|
|
winres.workspace = true
|
|
winapi.workspace = true
|
|
|
|
[dependencies]
|
|
deno_broadcast_channel.workspace = true
|
|
deno_cache.workspace = true
|
|
deno_console.workspace = true
|
|
deno_core.workspace = true
|
|
deno_crypto.workspace = true
|
|
deno_fetch.workspace = true
|
|
deno_ffi.workspace = true
|
|
deno_fs = { workspace = true, features = ["sync_fs"] }
|
|
deno_http.workspace = true
|
|
deno_io.workspace = true
|
|
deno_kv.workspace = true
|
|
deno_napi.workspace = true
|
|
deno_net.workspace = true
|
|
deno_node.workspace = true
|
|
deno_tls.workspace = true
|
|
deno_url.workspace = true
|
|
deno_web.workspace = true
|
|
deno_webidl.workspace = true
|
|
deno_websocket.workspace = true
|
|
deno_webstorage.workspace = true
|
|
fastwebsockets.workspace = true
|
|
|
|
atty.workspace = true
|
|
console_static_text.workspace = true
|
|
dlopen.workspace = true
|
|
encoding_rs.workspace = true
|
|
filetime = "0.2.16"
|
|
fs3.workspace = true
|
|
http.workspace = true
|
|
hyper = { workspace = true, features = ["server", "stream", "http1", "http2", "runtime"] }
|
|
libc.workspace = true
|
|
log.workspace = true
|
|
netif = "0.1.6"
|
|
notify.workspace = true
|
|
once_cell.workspace = true
|
|
regex.workspace = true
|
|
ring.workspace = true
|
|
serde.workspace = true
|
|
signal-hook-registry = "1.4.0"
|
|
termcolor = "1.1.3"
|
|
tokio.workspace = true
|
|
tokio-metrics.workspace = true
|
|
uuid.workspace = true
|
|
|
|
[target.'cfg(windows)'.dependencies]
|
|
fwdansi.workspace = true
|
|
winapi = { workspace = true, features = ["commapi", "knownfolders", "mswsock", "objbase", "psapi", "shlobj", "tlhelp32", "winbase", "winerror", "winuser", "winsock2"] }
|
|
ntapi = "0.4.0"
|
|
|
|
[target.'cfg(unix)'.dependencies]
|
|
nix.workspace = true
|
|
|
|
[dev-dependencies]
|
|
# Used in benchmark
|
|
test_util.workspace = true
|
|
|
|
[package.metadata.docs.rs]
|
|
features = ["docsrs"]
|