2024-01-01 14:58:21 -05:00
|
|
|
# Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
|
2020-12-13 19:45:53 +01:00
|
|
|
|
|
|
|
[package]
|
|
|
|
name = "deno_runtime"
|
2024-08-22 13:44:53 -04:00
|
|
|
version = "0.175.0"
|
2022-11-22 21:07:35 +01:00
|
|
|
authors.workspace = true
|
|
|
|
edition.workspace = true
|
|
|
|
license.workspace = true
|
|
|
|
repository.workspace = true
|
2021-08-02 10:19:27 -04:00
|
|
|
description = "Provides the deno runtime library"
|
2020-12-13 19:45:53 +01:00
|
|
|
|
2021-08-11 18:01:30 +02:00
|
|
|
[features]
|
|
|
|
# "fake" feature that allows to generate docs on docs.rs
|
|
|
|
docsrs = []
|
2023-08-28 22:30:46 +01:00
|
|
|
# A feature that allows excluding `./js/99_main.js` from the exported extension.
|
|
|
|
exclude_runtime_main_js = []
|
2023-06-26 13:54:10 +02:00
|
|
|
# A feature that disables embedding of the JavaScript source files in the binary.
|
|
|
|
# With this feature enabled, the sources must be consumed during build time,
|
|
|
|
# by creating a startup snapshot.
|
|
|
|
include_js_files_for_snapshotting = [
|
|
|
|
"deno_core/include_js_files_for_snapshotting",
|
|
|
|
]
|
2023-08-06 00:47:15 +01:00
|
|
|
# A dev feature to disable creations and loading of snapshots in favor of
|
|
|
|
# loading JS sources at runtime.
|
2024-07-05 05:17:53 -07:00
|
|
|
hmr = ["include_js_files_for_snapshotting"]
|
2024-01-22 12:37:25 +00:00
|
|
|
# Signal that only snapshotted JS sources should be used. This will
|
|
|
|
# conditionally exclude the runtime source transpilation logic, and add an
|
|
|
|
# assertion that a snapshot is provided.
|
|
|
|
only_snapshotted_js_sources = ["include_js_files_for_snapshotting"]
|
2021-08-11 18:01:30 +02:00
|
|
|
|
2024-07-29 22:28:04 +05:30
|
|
|
[lints.rust]
|
|
|
|
unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tokio_unstable)'] }
|
|
|
|
|
2020-12-13 19:45:53 +01:00
|
|
|
[lib]
|
|
|
|
name = "deno_runtime"
|
|
|
|
path = "lib.rs"
|
|
|
|
|
|
|
|
[[example]]
|
2024-03-13 21:23:37 -06:00
|
|
|
name = "extension"
|
|
|
|
path = "examples/extension/main.rs"
|
2020-12-13 19:45:53 +01:00
|
|
|
|
2022-07-05 00:12:41 +02:00
|
|
|
[build-dependencies]
|
2023-02-08 22:40:18 +01:00
|
|
|
deno_ast.workspace = true
|
2022-11-22 21:07:35 +01:00
|
|
|
deno_broadcast_channel.workspace = true
|
|
|
|
deno_cache.workspace = true
|
2024-01-22 12:08:01 +01:00
|
|
|
deno_canvas.workspace = true
|
2022-11-22 21:07:35 +01:00
|
|
|
deno_console.workspace = true
|
2023-06-26 13:54:10 +02:00
|
|
|
deno_core.workspace = true
|
2023-11-01 11:57:55 -07:00
|
|
|
deno_cron.workspace = true
|
2022-11-22 21:07:35 +01:00
|
|
|
deno_crypto.workspace = true
|
|
|
|
deno_fetch.workspace = true
|
|
|
|
deno_ffi.workspace = true
|
2023-05-08 11:02:02 -04:00
|
|
|
deno_fs = { workspace = true, features = ["sync_fs"] }
|
2022-11-22 21:07:35 +01:00
|
|
|
deno_http.workspace = true
|
2023-03-04 20:39:48 -04:00
|
|
|
deno_io.workspace = true
|
2022-11-22 21:07:35 +01:00
|
|
|
deno_net.workspace = true
|
|
|
|
deno_node.workspace = true
|
2023-03-22 12:13:24 +08:00
|
|
|
deno_kv.workspace = true
|
2022-11-22 21:07:35 +01:00
|
|
|
deno_tls.workspace = true
|
|
|
|
deno_url.workspace = true
|
|
|
|
deno_web.workspace = true
|
2023-12-09 01:19:16 +01:00
|
|
|
deno_webgpu.workspace = true
|
2022-11-22 21:07:35 +01:00
|
|
|
deno_webidl.workspace = true
|
|
|
|
deno_websocket.workspace = true
|
|
|
|
deno_webstorage.workspace = true
|
|
|
|
deno_napi.workspace = true
|
2023-11-11 07:20:12 -07:00
|
|
|
flate2 = { workspace = true, features = ["default"] }
|
2023-11-17 00:57:25 -08:00
|
|
|
serde.workspace = true
|
2022-07-05 00:12:41 +02:00
|
|
|
|
2020-12-13 19:45:53 +01:00
|
|
|
[target.'cfg(windows)'.build-dependencies]
|
2022-11-22 21:07:35 +01:00
|
|
|
winapi.workspace = true
|
2020-12-13 19:45:53 +01:00
|
|
|
|
|
|
|
[dependencies]
|
2023-08-06 00:47:15 +01:00
|
|
|
deno_ast.workspace = true
|
2022-11-22 21:07:35 +01:00
|
|
|
deno_broadcast_channel.workspace = true
|
|
|
|
deno_cache.workspace = true
|
2024-01-22 12:08:01 +01:00
|
|
|
deno_canvas.workspace = true
|
2022-11-22 21:07:35 +01:00
|
|
|
deno_console.workspace = true
|
|
|
|
deno_core.workspace = true
|
2023-11-01 11:57:55 -07:00
|
|
|
deno_cron.workspace = true
|
2022-11-22 21:07:35 +01:00
|
|
|
deno_crypto.workspace = true
|
|
|
|
deno_fetch.workspace = true
|
|
|
|
deno_ffi.workspace = true
|
2023-05-08 11:02:02 -04:00
|
|
|
deno_fs = { workspace = true, features = ["sync_fs"] }
|
2022-11-22 21:07:35 +01:00
|
|
|
deno_http.workspace = true
|
2023-03-04 20:39:48 -04:00
|
|
|
deno_io.workspace = true
|
2023-03-22 12:13:24 +08:00
|
|
|
deno_kv.workspace = true
|
2022-11-22 21:07:35 +01:00
|
|
|
deno_napi.workspace = true
|
|
|
|
deno_net.workspace = true
|
|
|
|
deno_node.workspace = true
|
2024-03-12 10:42:26 -07:00
|
|
|
deno_permissions.workspace = true
|
2024-02-07 11:25:14 -05:00
|
|
|
deno_terminal.workspace = true
|
2022-11-22 21:07:35 +01:00
|
|
|
deno_tls.workspace = true
|
|
|
|
deno_url.workspace = true
|
|
|
|
deno_web.workspace = true
|
2023-12-09 01:19:16 +01:00
|
|
|
deno_webgpu.workspace = true
|
2022-11-22 21:07:35 +01:00
|
|
|
deno_webidl.workspace = true
|
|
|
|
deno_websocket.workspace = true
|
|
|
|
deno_webstorage.workspace = true
|
2024-07-25 19:08:14 -04:00
|
|
|
node_resolver = { workspace = true, features = ["sync"] }
|
2020-12-13 19:45:53 +01:00
|
|
|
|
2023-11-05 01:29:26 -08:00
|
|
|
dlopen2.workspace = true
|
2022-11-22 21:07:35 +01:00
|
|
|
encoding_rs.workspace = true
|
2023-12-26 21:53:28 +01:00
|
|
|
fastwebsockets.workspace = true
|
2022-11-22 21:07:35 +01:00
|
|
|
http.workspace = true
|
2023-12-27 14:38:44 +01:00
|
|
|
http-body-util.workspace = true
|
2023-12-27 17:59:57 +01:00
|
|
|
hyper.workspace = true
|
2023-12-24 14:14:29 +01:00
|
|
|
hyper-util.workspace = true
|
2023-12-27 17:59:57 +01:00
|
|
|
hyper_v014 = { workspace = true, features = ["server", "stream", "http1", "http2", "runtime"] }
|
2022-11-22 21:07:35 +01:00
|
|
|
libc.workspace = true
|
|
|
|
log.workspace = true
|
2022-09-19 20:12:03 +02:00
|
|
|
netif = "0.1.6"
|
2022-11-22 21:07:35 +01:00
|
|
|
notify.workspace = true
|
|
|
|
once_cell.workspace = true
|
2024-04-17 07:19:55 -07:00
|
|
|
percent-encoding.workspace = true
|
2022-11-22 21:07:35 +01:00
|
|
|
regex.workspace = true
|
2024-01-12 02:35:55 +05:30
|
|
|
rustyline = { workspace = true, features = ["custom-bindings"] }
|
2022-11-22 21:07:35 +01:00
|
|
|
serde.workspace = true
|
2024-03-11 10:22:28 -07:00
|
|
|
signal-hook = "0.3.17"
|
2022-01-04 21:55:06 +01:00
|
|
|
signal-hook-registry = "1.4.0"
|
2022-11-22 21:07:35 +01:00
|
|
|
tokio.workspace = true
|
2023-06-09 13:52:51 +02:00
|
|
|
tokio-metrics.workspace = true
|
2024-05-24 10:15:46 -04:00
|
|
|
twox-hash.workspace = true
|
2022-11-22 21:07:35 +01:00
|
|
|
uuid.workspace = true
|
2024-07-09 20:06:08 -07:00
|
|
|
which.workspace = true
|
2020-12-13 19:45:53 +01:00
|
|
|
|
|
|
|
[target.'cfg(windows)'.dependencies]
|
2023-03-21 11:46:40 -04:00
|
|
|
winapi = { workspace = true, features = ["commapi", "knownfolders", "mswsock", "objbase", "psapi", "shlobj", "tlhelp32", "winbase", "winerror", "winuser", "winsock2"] }
|
2022-11-02 00:17:00 -07:00
|
|
|
ntapi = "0.4.0"
|
2023-12-19 18:07:22 +05:30
|
|
|
windows-sys.workspace = true
|
2020-12-13 19:45:53 +01:00
|
|
|
|
|
|
|
[target.'cfg(unix)'.dependencies]
|
2022-11-22 21:07:35 +01:00
|
|
|
nix.workspace = true
|
2020-12-13 19:45:53 +01:00
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
# Used in benchmark
|
2022-11-22 21:07:35 +01:00
|
|
|
test_util.workspace = true
|
2021-08-11 18:01:30 +02:00
|
|
|
|
|
|
|
[package.metadata.docs.rs]
|
|
|
|
features = ["docsrs"]
|