2022-01-08 03:09:52 +00:00
|
|
|
# Copyright 2018-2022 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"
|
2022-08-04 22:10:47 +00:00
|
|
|
version = "1.24.2"
|
2019-09-15 22:36:27 +00:00
|
|
|
authors = ["the Deno authors"]
|
2021-08-02 14:19:27 +00:00
|
|
|
default-run = "deno"
|
2021-11-02 14:03:37 +00:00
|
|
|
edition = "2021"
|
2021-08-02 14:19:27 +00:00
|
|
|
license = "MIT"
|
2019-09-15 22:36:27 +00:00
|
|
|
repository = "https://github.com/denoland/deno"
|
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"
|
|
|
|
|
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"
|
|
|
|
|
2019-10-05 00:28:51 +00:00
|
|
|
[build-dependencies]
|
2022-08-04 22:10:47 +00:00
|
|
|
deno_broadcast_channel = { version = "0.58.0", path = "../ext/broadcast_channel" }
|
|
|
|
deno_console = { version = "0.64.0", path = "../ext/console" }
|
|
|
|
deno_core = { version = "0.146.0", path = "../core" }
|
|
|
|
deno_crypto = { version = "0.78.0", path = "../ext/crypto" }
|
|
|
|
deno_fetch = { version = "0.87.0", path = "../ext/fetch" }
|
|
|
|
deno_net = { version = "0.56.0", path = "../ext/net" }
|
|
|
|
deno_url = { version = "0.64.0", path = "../ext/url" }
|
|
|
|
deno_web = { version = "0.95.0", path = "../ext/web" }
|
|
|
|
deno_webgpu = { version = "0.65.0", path = "../ext/webgpu" }
|
|
|
|
deno_websocket = { version = "0.69.0", path = "../ext/websocket" }
|
|
|
|
deno_webstorage = { version = "0.59.0", path = "../ext/webstorage" }
|
2022-06-15 17:48:53 +00:00
|
|
|
regex = "=1.5.6"
|
2022-07-11 18:10:12 +00:00
|
|
|
serde = { version = "=1.0.139", features = ["derive"] }
|
2022-05-05 10:41:59 +00:00
|
|
|
zstd = '=0.11.1'
|
2019-10-05 00:28:51 +00:00
|
|
|
|
2020-07-15 19:54:38 +00:00
|
|
|
[target.'cfg(windows)'.build-dependencies]
|
2021-12-07 00:43:09 +00:00
|
|
|
winapi = "=0.3.9"
|
2022-05-05 10:41:59 +00:00
|
|
|
winres = "=0.1.12"
|
2020-07-15 19:54:38 +00:00
|
|
|
|
2019-03-30 18:45:36 +00:00
|
|
|
[dependencies]
|
2022-07-11 18:10:12 +00:00
|
|
|
deno_ast = { version = "0.17.0", features = ["bundler", "cjs", "codegen", "dep_graph", "module_specifier", "proposal", "react", "sourcemap", "transforms", "transpiling", "typescript", "view", "visit"] }
|
2022-08-04 22:10:47 +00:00
|
|
|
deno_core = { version = "0.146.0", path = "../core" }
|
2022-07-11 18:10:12 +00:00
|
|
|
deno_doc = "0.38.0"
|
|
|
|
deno_emit = "0.4.0"
|
|
|
|
deno_graph = "0.29.0"
|
|
|
|
deno_lint = { version = "0.32.0", features = ["docs"] }
|
2022-08-04 22:10:47 +00:00
|
|
|
deno_runtime = { version = "0.72.0", path = "../runtime" }
|
2022-07-19 20:50:09 +00:00
|
|
|
deno_task_shell = "0.5.0"
|
2019-03-30 18:45:36 +00:00
|
|
|
|
2021-12-07 00:43:09 +00:00
|
|
|
atty = "=0.2.14"
|
|
|
|
base64 = "=0.13.0"
|
2021-12-09 11:16:17 +00:00
|
|
|
cache_control = "=0.2.0"
|
|
|
|
chrono = "=0.4.19"
|
2022-05-05 10:41:59 +00:00
|
|
|
clap = "=3.1.12"
|
|
|
|
clap_complete = "=3.1.2"
|
|
|
|
clap_complete_fig = "=3.1.5"
|
2021-12-09 00:12:14 +00:00
|
|
|
data-url = "=0.1.1"
|
2022-05-05 10:41:59 +00:00
|
|
|
dissimilar = "=1.0.3"
|
2022-07-27 01:24:56 +00:00
|
|
|
dprint-plugin-json = "=0.15.4"
|
2022-05-25 23:55:31 +00:00
|
|
|
dprint-plugin-markdown = "=0.13.3"
|
2022-07-20 12:55:18 +00:00
|
|
|
dprint-plugin-typescript = "=0.71.1"
|
2022-05-05 10:41:59 +00:00
|
|
|
encoding_rs = "=0.8.31"
|
|
|
|
env_logger = "=0.9.0"
|
2022-07-11 18:10:12 +00:00
|
|
|
eszip = "=0.22.0"
|
2022-05-05 10:41:59 +00:00
|
|
|
fancy-regex = "=0.9.0"
|
|
|
|
http = "=0.2.6"
|
2022-07-14 01:12:18 +00:00
|
|
|
import_map = "=0.12.1"
|
2022-05-30 17:58:44 +00:00
|
|
|
indexmap = "1.8.1"
|
2022-07-27 01:24:56 +00:00
|
|
|
jsonc-parser = { version = "=0.20.0", features = ["serde"] }
|
2022-05-26 11:13:01 +00:00
|
|
|
libc = "=0.2.126"
|
2022-06-15 17:48:53 +00:00
|
|
|
log = { version = "=0.4.17", features = ["serde"] }
|
2022-05-19 21:39:59 +00:00
|
|
|
mitata = '=0.0.7'
|
2022-03-17 01:37:02 +00:00
|
|
|
node_resolver = "=0.1.1"
|
2022-06-15 17:48:53 +00:00
|
|
|
notify = "=5.0.0-pre.15"
|
|
|
|
once_cell = "=1.12.0"
|
2022-04-15 12:24:41 +00:00
|
|
|
os_pipe = "=1.0.1"
|
2021-12-07 00:43:09 +00:00
|
|
|
percent-encoding = "=2.1.0"
|
2022-07-05 17:00:42 +00:00
|
|
|
pin-project = "1.0.11" # don't pin because they yank crates from cargo
|
2022-05-05 10:41:59 +00:00
|
|
|
rand = { version = "=0.8.5", features = ["small_rng"] }
|
2022-06-15 17:48:53 +00:00
|
|
|
regex = "=1.5.6"
|
2021-12-07 00:43:09 +00:00
|
|
|
ring = "=0.16.20"
|
2022-07-18 18:47:00 +00:00
|
|
|
rustyline = { version = "=10.0.0", default-features = false, features = ["custom-bindings"] }
|
|
|
|
rustyline-derive = "=0.7.0"
|
2022-05-05 10:41:59 +00:00
|
|
|
secure_tempfile = { version = "=3.3.0", package = "tempfile" } # different name to discourage use in tests
|
2021-12-07 00:43:09 +00:00
|
|
|
semver-parser = "=0.10.2"
|
2022-07-11 18:10:12 +00:00
|
|
|
serde = { version = "=1.0.139", features = ["derive"] }
|
2022-06-01 00:19:18 +00:00
|
|
|
serde_repr = "=0.1.8"
|
2021-12-07 00:43:09 +00:00
|
|
|
shell-escape = "=0.1.5"
|
|
|
|
text-size = "=1.1.0"
|
2022-07-11 23:02:11 +00:00
|
|
|
text_lines = "=0.6.0"
|
2022-06-15 17:48:53 +00:00
|
|
|
tokio = { version = "=1.19", features = ["full"] }
|
|
|
|
tokio-util = "=0.7.2"
|
2022-05-05 10:41:59 +00:00
|
|
|
tower-lsp = "=0.17.0"
|
2022-04-20 02:14:00 +00:00
|
|
|
twox-hash = "=1.6.2"
|
2022-01-11 20:17:25 +00:00
|
|
|
typed-arena = "2.0.1"
|
2022-05-05 10:41:59 +00:00
|
|
|
uuid = { version = "=1.0.0", features = ["v4", "serde"] }
|
2021-12-07 00:43:09 +00:00
|
|
|
walkdir = "=2.3.2"
|
2022-05-05 10:41:59 +00:00
|
|
|
zstd = '=0.11.1'
|
2020-03-27 20:09:51 +00:00
|
|
|
|
2019-03-30 18:45:36 +00:00
|
|
|
[target.'cfg(windows)'.dependencies]
|
2021-12-07 00:43:09 +00:00
|
|
|
fwdansi = "=1.1.0"
|
|
|
|
winapi = { version = "=0.3.9", features = ["knownfolders", "mswsock", "objbase", "shlobj", "tlhelp32", "winbase", "winerror", "winsock2"] }
|
2019-04-22 01:26:56 +00:00
|
|
|
|
2019-09-10 15:09:54 +00:00
|
|
|
[dev-dependencies]
|
2022-06-28 12:21:05 +00:00
|
|
|
csv = "1.1.6"
|
2022-08-04 22:10:47 +00:00
|
|
|
deno_bench_util = { version = "0.58.0", path = "../bench_util" }
|
2022-06-28 12:21:05 +00:00
|
|
|
dotenv = "0.15.0"
|
2021-12-07 00:43:09 +00:00
|
|
|
flaky_test = "=0.1.0"
|
2022-06-28 12:21:05 +00:00
|
|
|
google-storage1 = "3.1.0"
|
|
|
|
once_cell = "=1.12.0"
|
2022-03-11 18:20:14 +00:00
|
|
|
os_pipe = "=1.0.1"
|
2022-05-05 10:41:59 +00:00
|
|
|
pretty_assertions = "=1.2.1"
|
2020-06-18 15:54:55 +00:00
|
|
|
test_util = { path = "../test_util" }
|
2022-05-05 10:41:59 +00:00
|
|
|
trust-dns-client = "=0.21.2"
|
|
|
|
trust-dns-server = "=0.21.2"
|
2020-02-26 06:01:24 +00:00
|
|
|
|
2020-11-27 17:08:28 +00:00
|
|
|
[target.'cfg(unix)'.dev-dependencies]
|
2022-07-18 18:47:00 +00:00
|
|
|
nix = "=0.24.2"
|
2020-11-27 17:08:28 +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"
|