2024-01-01 19:58:21 +00:00
|
|
|
# Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
|
2019-03-30 18:45:36 +00:00
|
|
|
|
|
|
|
[package]
|
2020-01-05 16:56:18 +00:00
|
|
|
name = "deno"
|
2024-01-26 18:59:16 +00:00
|
|
|
version = "1.40.2"
|
2022-11-22 20:07:35 +00:00
|
|
|
authors.workspace = true
|
2021-08-02 14:19:27 +00:00
|
|
|
default-run = "deno"
|
2022-11-22 20:07:35 +00:00
|
|
|
edition.workspace = true
|
2022-09-09 23:43:51 +00:00
|
|
|
exclude = ["tests/testdata/npm/registry/*"]
|
2022-11-22 20:07:35 +00:00
|
|
|
license.workspace = true
|
|
|
|
repository.workspace = true
|
2021-08-02 14:19:27 +00:00
|
|
|
description = "Provides the deno executable"
|
2019-03-30 18:45:36 +00:00
|
|
|
|
2019-09-17 01:05:14 +00:00
|
|
|
[[bin]]
|
|
|
|
name = "deno"
|
|
|
|
path = "main.rs"
|
2023-01-04 12:19:58 +00:00
|
|
|
doc = false
|
2019-09-17 01:05:14 +00:00
|
|
|
|
2020-08-28 13:03:50 +00:00
|
|
|
[[bench]]
|
|
|
|
name = "deno_bench"
|
|
|
|
harness = false
|
|
|
|
path = "./bench/main.rs"
|
|
|
|
|
2022-01-18 11:58:50 +00:00
|
|
|
[[bench]]
|
|
|
|
name = "lsp_bench_standalone"
|
|
|
|
harness = false
|
|
|
|
path = "./bench/lsp_bench_standalone.rs"
|
|
|
|
|
2023-08-05 23:47:15 +00:00
|
|
|
[features]
|
2023-11-29 18:52:25 +00:00
|
|
|
default = ["upgrade", "__vendored_zlib_ng"]
|
|
|
|
# A feature that enables the upgrade subcommand and the background check for
|
|
|
|
# available updates (of deno binary). This is typically disabled for (Linux)
|
|
|
|
# distribution packages.
|
|
|
|
upgrade = []
|
2023-08-05 23:47:15 +00:00
|
|
|
# A dev feature to disable creations and loading of snapshots in favor of
|
|
|
|
# loading JS sources at runtime.
|
|
|
|
__runtime_js_sources = ["deno_runtime/__runtime_js_sources"]
|
2023-11-11 14:20:12 +00:00
|
|
|
# Vendor zlib as zlib-ng
|
|
|
|
__vendored_zlib_ng = ["flate2/zlib-ng-compat", "libz-sys/zlib-ng"]
|
2023-08-05 23:47:15 +00:00
|
|
|
|
2019-10-05 00:28:51 +00:00
|
|
|
[build-dependencies]
|
2024-01-22 12:37:25 +00:00
|
|
|
deno_runtime = { workspace = true, features = ["include_js_files_for_snapshotting", "only_snapshotted_js_sources"] }
|
2023-06-26 11:54:10 +00:00
|
|
|
deno_core = { workspace = true, features = ["include_js_files_for_snapshotting"] }
|
2023-04-13 01:08:01 +00:00
|
|
|
lazy-regex.workspace = true
|
2022-11-22 20:07:35 +00:00
|
|
|
serde.workspace = true
|
|
|
|
serde_json.workspace = true
|
2023-03-21 19:11:22 +00:00
|
|
|
zstd.workspace = true
|
2022-10-15 15:21:04 +00:00
|
|
|
glibc_version = "0.1.2"
|
2023-11-11 14:20:12 +00:00
|
|
|
flate2 = { workspace = true, features = ["default"] }
|
2019-10-05 00:28:51 +00:00
|
|
|
|
2020-07-15 19:54:38 +00:00
|
|
|
[target.'cfg(windows)'.build-dependencies]
|
2022-11-22 20:07:35 +00:00
|
|
|
winapi.workspace = true
|
|
|
|
winres.workspace = true
|
2020-07-15 19:54:38 +00:00
|
|
|
|
2019-03-30 18:45:36 +00:00
|
|
|
[dependencies]
|
2022-11-22 20:07:35 +00:00
|
|
|
deno_ast = { workspace = true, features = ["bundler", "cjs", "codegen", "dep_graph", "module_specifier", "proposal", "react", "sourcemap", "transforms", "typescript", "view", "visit"] }
|
2023-10-27 21:15:09 +00:00
|
|
|
deno_cache_dir = "=0.6.1"
|
2024-01-24 20:30:08 +00:00
|
|
|
deno_config = "=0.9.1"
|
2023-06-26 11:54:10 +00:00
|
|
|
deno_core = { workspace = true, features = ["include_js_files_for_snapshotting"] }
|
2024-01-23 10:25:44 +00:00
|
|
|
deno_doc = { version = "=0.94.1", features = ["html"] }
|
|
|
|
deno_emit = "=0.34.0"
|
2024-01-25 13:37:15 +00:00
|
|
|
deno_graph = "=0.63.6"
|
2024-01-24 23:31:20 +00:00
|
|
|
deno_lint = { version = "=0.55.0", features = ["docs"] }
|
2023-01-23 22:41:02 +00:00
|
|
|
deno_lockfile.workspace = true
|
2024-01-22 21:31:12 +00:00
|
|
|
deno_npm = "=0.16.0"
|
2024-01-10 15:30:50 +00:00
|
|
|
deno_runtime = { workspace = true, features = ["include_js_files_for_snapshotting"] }
|
2024-01-21 22:19:10 +00:00
|
|
|
deno_semver = "=0.5.4"
|
|
|
|
deno_task_shell = "=0.14.3"
|
2024-01-23 10:25:44 +00:00
|
|
|
eszip = "=0.59.0"
|
2022-11-22 20:07:35 +00:00
|
|
|
napi_sym.workspace = true
|
2019-03-30 18:45:36 +00:00
|
|
|
|
2023-02-21 17:03:48 +00:00
|
|
|
async-trait.workspace = true
|
2022-11-16 18:44:31 +00:00
|
|
|
base32 = "=0.4.0"
|
2022-11-22 20:07:35 +00:00
|
|
|
base64.workspace = true
|
2023-07-10 17:42:47 +00:00
|
|
|
bincode = "=1.3.3"
|
2023-09-16 00:42:09 +00:00
|
|
|
bytes.workspace = true
|
2022-11-22 20:07:35 +00:00
|
|
|
cache_control.workspace = true
|
2023-08-22 05:56:00 +00:00
|
|
|
chrono.workspace = true
|
2024-01-16 12:45:11 +00:00
|
|
|
clap = { version = "=4.4.17", features = ["env", "string"] }
|
|
|
|
clap_complete = "=4.4.7"
|
|
|
|
clap_complete_fig = "=4.4.2"
|
2024-01-23 18:56:50 +00:00
|
|
|
color-print = "0.3.5"
|
2023-03-10 00:09:14 +00:00
|
|
|
console_static_text.workspace = true
|
2023-09-29 19:44:59 +00:00
|
|
|
dashmap = "5.5.3"
|
2023-09-16 00:42:09 +00:00
|
|
|
data-encoding.workspace = true
|
2022-11-22 20:07:35 +00:00
|
|
|
data-url.workspace = true
|
2022-09-16 23:11:30 +00:00
|
|
|
dissimilar = "=1.0.4"
|
2023-11-01 15:21:13 +00:00
|
|
|
dotenvy = "0.15.7"
|
2023-11-24 17:54:58 +00:00
|
|
|
dprint-plugin-json = "=0.19.1"
|
2023-11-27 23:15:50 +00:00
|
|
|
dprint-plugin-jupyter = "=0.1.2"
|
2023-11-24 17:54:58 +00:00
|
|
|
dprint-plugin-markdown = "=0.16.3"
|
2024-01-23 10:25:44 +00:00
|
|
|
dprint-plugin-typescript = "=0.88.10"
|
2022-11-22 20:07:35 +00:00
|
|
|
encoding_rs.workspace = true
|
2023-08-25 17:40:21 +00:00
|
|
|
env_logger = "=0.10.0"
|
2022-08-09 21:27:22 +00:00
|
|
|
fancy-regex = "=0.10.0"
|
2023-11-11 14:20:12 +00:00
|
|
|
# If you disable the default __vendored_zlib_ng feature above, you _must_ be able to link against `-lz`.
|
2022-11-22 20:07:35 +00:00
|
|
|
flate2.workspace = true
|
2023-03-08 15:13:13 +00:00
|
|
|
fs3.workspace = true
|
2023-05-23 01:39:59 +00:00
|
|
|
glob = "0.3.1"
|
2023-09-18 20:40:41 +00:00
|
|
|
hex.workspace = true
|
2024-01-21 22:19:10 +00:00
|
|
|
import_map = { version = "=0.18.2", features = ["ext"] }
|
2023-02-23 03:45:35 +00:00
|
|
|
indexmap.workspace = true
|
2023-11-24 17:54:58 +00:00
|
|
|
jsonc-parser = { version = "=0.23.0", features = ["serde"] }
|
2023-04-13 01:08:01 +00:00
|
|
|
lazy-regex.workspace = true
|
2022-11-22 20:07:35 +00:00
|
|
|
libc.workspace = true
|
2023-11-11 14:20:12 +00:00
|
|
|
libz-sys.workspace = true
|
2022-11-22 20:07:35 +00:00
|
|
|
log = { workspace = true, features = ["serde"] }
|
2023-03-08 23:15:20 +00:00
|
|
|
lsp-types.workspace = true
|
2023-09-14 16:21:57 +00:00
|
|
|
monch.workspace = true
|
2022-11-22 20:07:35 +00:00
|
|
|
notify.workspace = true
|
|
|
|
once_cell.workspace = true
|
|
|
|
os_pipe.workspace = true
|
|
|
|
percent-encoding.workspace = true
|
|
|
|
pin-project.workspace = true
|
2023-10-28 13:10:17 +00:00
|
|
|
quick-junit = "^0.3.5"
|
2022-11-22 20:07:35 +00:00
|
|
|
rand = { workspace = true, features = ["small_rng"] }
|
|
|
|
regex.workspace = true
|
|
|
|
ring.workspace = true
|
2024-01-11 21:05:55 +00:00
|
|
|
rustyline.workspace = true
|
2022-07-18 18:47:00 +00:00
|
|
|
rustyline-derive = "=0.7.0"
|
2022-11-22 20:07:35 +00:00
|
|
|
serde.workspace = true
|
|
|
|
serde_repr.workspace = true
|
2023-11-23 23:38:07 +00:00
|
|
|
sha2.workspace = true
|
2021-12-07 00:43:09 +00:00
|
|
|
shell-escape = "=0.1.5"
|
2022-11-22 20:07:35 +00:00
|
|
|
tar.workspace = true
|
2023-03-22 18:55:19 +00:00
|
|
|
tempfile.workspace = true
|
2021-12-07 00:43:09 +00:00
|
|
|
text-size = "=1.1.0"
|
2022-07-11 23:02:11 +00:00
|
|
|
text_lines = "=0.6.0"
|
2023-03-14 14:55:52 +00:00
|
|
|
thiserror.workspace = true
|
2022-11-22 20:07:35 +00:00
|
|
|
tokio.workspace = true
|
|
|
|
tokio-util.workspace = true
|
2023-03-08 23:15:20 +00:00
|
|
|
tower-lsp.workspace = true
|
2022-09-16 23:11:30 +00:00
|
|
|
twox-hash = "=1.6.3"
|
|
|
|
typed-arena = "=2.0.1"
|
2024-01-23 15:37:43 +00:00
|
|
|
unicode-width = "0.1"
|
2022-11-22 20:07:35 +00:00
|
|
|
uuid = { workspace = true, features = ["serde"] }
|
2021-12-07 00:43:09 +00:00
|
|
|
walkdir = "=2.3.2"
|
2023-11-01 20:20:50 +00:00
|
|
|
zeromq = { version = "=0.3.4", default-features = false, features = ["tcp-transport", "tokio-runtime"] }
|
2023-03-21 19:11:22 +00:00
|
|
|
zstd.workspace = true
|
2020-03-27 20:09:51 +00:00
|
|
|
|
2019-03-30 18:45:36 +00:00
|
|
|
[target.'cfg(windows)'.dependencies]
|
2022-11-22 20:07:35 +00:00
|
|
|
fwdansi.workspace = true
|
2022-09-27 22:02:35 +00:00
|
|
|
junction = "=0.2.0"
|
2022-11-22 20:07:35 +00:00
|
|
|
winapi = { workspace = true, features = ["knownfolders", "mswsock", "objbase", "shlobj", "tlhelp32", "winbase", "winerror", "winsock2"] }
|
2019-04-22 01:26:56 +00:00
|
|
|
|
2022-10-21 19:50:03 +00:00
|
|
|
[target.'cfg(unix)'.dependencies]
|
2022-11-22 20:07:35 +00:00
|
|
|
nix.workspace = true
|
2022-10-21 19:50:03 +00:00
|
|
|
|
2019-09-10 15:09:54 +00:00
|
|
|
[dev-dependencies]
|
2022-11-22 20:07:35 +00:00
|
|
|
deno_bench_util.workspace = true
|
2023-12-27 16:59:57 +00:00
|
|
|
fastwebsockets = { workspace = true, features = ["upgrade", "unstable-split"] }
|
2021-12-07 00:43:09 +00:00
|
|
|
flaky_test = "=0.1.0"
|
2023-12-27 16:59:57 +00:00
|
|
|
http.workspace = true
|
2023-12-27 13:38:44 +00:00
|
|
|
http-body-util.workspace = true
|
2023-12-27 16:59:57 +00:00
|
|
|
hyper.workspace = true
|
2023-12-26 13:32:21 +00:00
|
|
|
hyper-util.workspace = true
|
2022-11-22 20:07:35 +00:00
|
|
|
once_cell.workspace = true
|
|
|
|
os_pipe.workspace = true
|
|
|
|
pretty_assertions.workspace = true
|
|
|
|
test_util.workspace = true
|
2022-09-16 23:11:30 +00:00
|
|
|
trust-dns-client = "=0.22.0"
|
2023-08-24 15:10:26 +00:00
|
|
|
trust-dns-server = "=0.22.1"
|
2020-02-26 06:01:24 +00:00
|
|
|
|
2020-07-15 19:54:38 +00:00
|
|
|
[package.metadata.winres]
|
|
|
|
# This section defines the metadata that appears in the deno.exe PE header.
|
|
|
|
OriginalFilename = "deno.exe"
|
|
|
|
LegalCopyright = "© Deno contributors & Deno Land Inc. MIT licensed."
|
|
|
|
ProductName = "Deno"
|
2021-04-01 23:10:00 +00:00
|
|
|
FileDescription = "Deno: A secure runtime for JavaScript and TypeScript"
|